| 1 | <?php |
||
| 7 | class Departments extends Model |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * The database table used by the model. |
||
| 11 | * |
||
| 12 | * @var string |
||
| 13 | */ |
||
| 14 | protected $table = 'departments'; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * Departments teams relation. |
||
| 18 | * |
||
| 19 | * @return \Illuminate\Database\Eloquent\Relations\BelongsToMany |
||
| 20 | */ |
||
| 21 | public function teams() |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Manager relation. |
||
| 28 | * @return \Illuminate\Database\Eloquent\Relations\BelongsToMany |
||
| 29 | */ |
||
| 30 | public function managers() |
||
| 34 | |||
| 35 | /** |
||
| 36 | * Members relation. |
||
| 37 | * @return \Illuminate\Database\Eloquent\Relations\BelongsToMany |
||
| 38 | */ |
||
| 39 | public function members() |
||
| 43 | } |
||
| 44 |