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 |