1 | <?php |
||
9 | class HomeController extends AuthorizedController |
||
10 | { |
||
11 | /** |
||
12 | * {@inheritdoc} |
||
13 | */ |
||
14 | protected $resource = 'managerarea'; |
||
15 | |||
16 | /** |
||
17 | * {@inheritdoc} |
||
18 | */ |
||
19 | protected $resourceAbilityMap = [ |
||
20 | 'index' => 'access', |
||
21 | ]; |
||
22 | |||
23 | /** |
||
24 | * Show managerarea index. |
||
25 | * |
||
26 | * @return \Illuminate\View\View |
||
27 | */ |
||
28 | public function index() |
||
32 | } |
||
33 |