<?php

class ProductionMaster extends \Eloquent {

	protected $softDelete	 = true;
	protected $guarded		 = array();

	public function production() {
		return $this->hasMany('Production');
	}

}
