Conditions | 2 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
25 | public function index(RoutesDataTable $routesDataTable) |
||
26 | { |
||
27 | $middlewareClosure = function ($middleware) { |
||
28 | return $middleware instanceof Closure ? 'Closure' : $middleware; |
||
29 | }; |
||
30 | |||
31 | return $routesDataTable->with([ |
||
32 | 'id' => 'adminarea-routes-index-table', |
||
33 | 'middlewareClosure' => $middlewareClosure, |
||
34 | ])->render('cortex/foundation::adminarea.pages.datatable-index'); |
||
35 | } |
||
36 | } |
||
37 |