| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php namespace Arcanesoft\Foundation\Http\Controllers\Admin\System; |
||
| 30 | public function index() |
||
| 31 | { |
||
| 32 | $this->setTitle('Routes Viewer'); |
||
| 33 | $this->addBreadcrumb('List of all routes'); |
||
| 34 | |||
| 35 | $routes = app('arcanedev.foundation.routes-viewer')->all(); |
||
| 36 | |||
| 37 | return $this->view('admin.system.routes.list', compact('routes')); |
||
| 38 | } |
||
| 39 | } |
||
| 40 |