1 | <?php |
||
10 | class RoleController extends ResourceController |
||
11 | { |
||
12 | /** |
||
13 | * Role has been created. |
||
14 | * |
||
15 | * @param StoreFormRequest $request |
||
16 | * @param Role $model |
||
17 | */ |
||
18 | protected function created($request, $model) |
||
22 | |||
23 | /** |
||
24 | * Role has been updated. |
||
25 | * |
||
26 | * @param UpdateFormRequest $request |
||
27 | * @param Role $model |
||
28 | */ |
||
29 | protected function updated($request, $model) |
||
33 | |||
34 | /** |
||
35 | * @return string |
||
36 | */ |
||
37 | protected function getModel(): string |
||
41 | |||
42 | /** |
||
43 | * @return string |
||
44 | */ |
||
45 | protected function getDatatable(): string |
||
49 | |||
50 | /** |
||
51 | * @return string |
||
52 | */ |
||
53 | protected function getStoreFormRequest(): string |
||
57 | |||
58 | /** |
||
59 | * @return string |
||
60 | */ |
||
61 | protected function getUpdateFormRequest(): string |
||
65 | } |
||
66 |