| 1 | <?php |
||
| 7 | class Departments extends Model |
||
| 8 | { |
||
| 9 | protected $fillable = ['name', 'manager']; |
||
| 10 | |||
| 11 | /** |
||
| 12 | * @return \Illuminate\Database\Eloquent\Relations\BelongsToMany |
||
| 13 | */ |
||
| 14 | public function managers() |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @return \Illuminate\Database\Eloquent\Relations\BelongsToMany |
||
| 21 | */ |
||
| 22 | public function users() |
||
| 26 | } |
||
| 27 |