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