1 | <?php |
||
24 | class Group extends Model |
||
25 | { |
||
26 | /** |
||
27 | * The database table used by the model. |
||
28 | * |
||
29 | * @var string |
||
30 | */ |
||
31 | protected $table = 'groups'; |
||
32 | |||
33 | /** |
||
34 | * The attributes that are mass assignable. |
||
35 | * |
||
36 | * @var array |
||
37 | */ |
||
38 | protected $fillable = ['name', 'description']; |
||
39 | |||
40 | public function employees() |
||
44 | |||
45 | public function addEmployees($employees) |
||
52 | } |
||
53 |