| 1 | <?php |
||
| 9 | class Group extends \Cartalyst\Sentinel\Roles\EloquentRole |
||
| 10 | { |
||
| 11 | |||
| 12 | /** |
||
| 13 | * {@inheritDoc} |
||
| 14 | */ |
||
| 15 | protected $table = 'Group'; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * {@inheritDoc} |
||
| 19 | */ |
||
| 20 | protected $fillable = [ |
||
| 21 | 'name', |
||
| 22 | 'slug', |
||
| 23 | 'permissions', |
||
| 24 | 'description', |
||
| 25 | ]; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * The Users relationship. |
||
| 29 | * |
||
| 30 | * @return \Illuminate\Database\Eloquent\Relations\BelongsToMany |
||
| 31 | */ |
||
| 32 | public function users() |
||
| 36 | |||
| 37 | /** |
||
| 38 | * The Menus relationship. |
||
| 39 | * |
||
| 40 | * @return \Illuminate\Database\Eloquent\Relations\BelongsToMany |
||
| 41 | */ |
||
| 42 | public function menus() |
||
| 46 | |||
| 47 | } |
||
| 48 |