| 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\System; |
||
| 21 | public function index() |
||
| 22 | { |
||
| 23 | $this->setTitle('Routes Viewer'); |
||
| 24 | $this->addBreadcrumb('Routes'); |
||
| 25 | |||
| 26 | $routes = app('arcanedev.foundation.routes-viewer')->all(); |
||
| 27 | |||
| 28 | return $this->view('system.routes.list', compact('routes')); |
||
| 29 | } |
||
| 30 | } |
||
| 31 |