| 1 | <?php |
||
| 17 | class Repository extends Base |
||
| 18 | { |
||
| 19 | |||
| 20 | public static $apresentationName = 'Repositorys'; |
||
| 21 | |||
| 22 | protected $organizationPerspective = true; |
||
| 23 | |||
| 24 | protected $table = 'repositories'; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * The attributes that are mass assignable. |
||
| 28 | * |
||
| 29 | * @var array |
||
| 30 | */ |
||
| 31 | protected $fillable = [ |
||
| 32 | 'code', |
||
| 33 | 'name' |
||
| 34 | ]; |
||
| 35 | |||
| 36 | public function stayInBranchOfAmbiente(Ambiente $ambiente) |
||
| 41 | |||
| 42 | public function getApresentationName() |
||
| 46 | |||
| 47 | public function project() |
||
| 51 | } |
||
| 52 |