| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 3 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php namespace Arcanesoft\Seo\Http\Routes\Admin; |
||
| 34 | 16 | public function map() |
|
| 35 | 16 | { |
|
| 36 | 16 | $this->prefix('metas')->name('metas.')->group(function () { |
|
| 37 | $this->get('/', 'MetasController@index') |
||
| 38 | ->name('index'); // admin::seo.metas.index |
||
| 39 | |||
| 40 | $this->prefix('{seo_meta}')->group(function () { |
||
| 41 | $this->get('/', 'MetasController@show') |
||
| 42 | ->name('show'); // admin::seo.metas.show |
||
| 43 | }); |
||
| 44 | }); |
||
| 45 | } |
||
| 46 | } |
||
| 47 |