| 1 | <?php |
||
| 11 | class DepartmentMembers extends Model |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * The database table used by the model. |
||
| 15 | * |
||
| 16 | * @var string |
||
| 17 | */ |
||
| 18 | protected $table = 'department_members'; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * members relation. |
||
| 22 | * |
||
| 23 | * @return \Illuminate\Database\Eloquent\Relations\BelongsToMany |
||
| 24 | */ |
||
| 25 | public function members() |
||
| 29 | |||
| 30 | /** |
||
| 31 | * teams relation. |
||
| 32 | * |
||
| 33 | * @return \Illuminate\Database\Eloquent\Relations\BelongsToMany |
||
| 34 | */ |
||
| 35 | public function teams() |
||
| 39 | } |
||
| 40 |