Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
15 | public function boot() |
||
16 | { |
||
17 | Bouncer::seeder(function () { |
||
18 | Bouncer::allow('Agent'); |
||
19 | |||
20 | Bouncer::allow('Administrator') |
||
21 | ->to(['manage_users', 'manage_break', 'manage_departments', 'manage_teams']); |
||
22 | |||
23 | Bouncer::allow('Manager') |
||
24 | ->to(['manager_users']); |
||
25 | |||
26 | Bouncer::allow('Department_Manager'); |
||
27 | }); |
||
28 | } |
||
29 | |||
40 |