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