| 1 | <?php |
||
| 9 | class UsersController extends Controller |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * Display index page and process dataTable ajax request. |
||
| 13 | * |
||
| 14 | * @param \App\DataTables\UsersDataTable $dataTable |
||
| 15 | * @return \Illuminate\Http\JsonResponse|\Illuminate\View\View |
||
| 16 | */ |
||
| 17 | public function index(UsersDataTable $dataTable) |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Show create user page. |
||
| 24 | * |
||
| 25 | * @return \BladeView|bool|\Illuminate\Contracts\View\Factory|\Illuminate\View\View |
||
| 26 | */ |
||
| 27 | public function create() |
||
| 31 | } |
||
| 32 |