1 | <?php |
||
2 | |||
3 | use Illuminate\Routing\Router; |
||
4 | |||
5 | $router->group(['as' => 'admin.', 'namespace' => 'SleepingOwl\Admin\Http\Controllers'], function (Router $router) { |
||
6 | 285 | if (! $router->has('admin.dashboard')) { |
|
7 | 285 | $router->get('', ['as' => 'dashboard', 'uses' => 'AdminController@getDashboard']); |
|
0 ignored issues
–
show
|
|||
8 | 285 | } |
|
9 | |||
10 | 285 | $router->get('{adminModel}', [ |
|
11 | 285 | 'as' => 'model', |
|
12 | 285 | 'uses' => 'AdminController@getDisplay', |
|
0 ignored issues
–
show
The controller
App\Http\Controllers\Sle...rollers\AdminController does not seem to exist.
If there is a route defined but the controller class cannot be found there are two options: 1. the controller class needs to be implemented or 2. the route is outdated and can be removed. If ?FooController? was found and ?BarController? is missing for the following example, either the controller should be implemented or the route should be removed: $app->group(['as' => 'foo', 'prefix' => 'foo', 'namespace' => 'Foo'], function($app) {
$app->group(['as' => 'foo', 'prefix' => 'foo'], function($app) {
$app->get('/all/{from}/{to}', ['as' => 'all', 'uses' => 'FooController@getFoo']);
$app->get('/all/{from}/{to}', ['as' => 'all', 'uses' => 'BarController@getBar']);
});
});
![]() |
|||
13 | 285 | ]); |
|
14 | |||
15 | 285 | $router->post('{adminModel}', [ |
|
16 | 285 | 'as' => 'model', |
|
17 | 285 | 'uses' => 'AdminController@inlineEdit', |
|
0 ignored issues
–
show
The controller
App\Http\Controllers\Sle...rollers\AdminController does not seem to exist.
If there is a route defined but the controller class cannot be found there are two options: 1. the controller class needs to be implemented or 2. the route is outdated and can be removed. If ?FooController? was found and ?BarController? is missing for the following example, either the controller should be implemented or the route should be removed: $app->group(['as' => 'foo', 'prefix' => 'foo', 'namespace' => 'Foo'], function($app) {
$app->group(['as' => 'foo', 'prefix' => 'foo'], function($app) {
$app->get('/all/{from}/{to}', ['as' => 'all', 'uses' => 'FooController@getFoo']);
$app->get('/all/{from}/{to}', ['as' => 'all', 'uses' => 'BarController@getBar']);
});
});
![]() |
|||
18 | 285 | ]); |
|
19 | |||
20 | 285 | $router->get('{adminModel}/create', [ |
|
21 | 285 | 'as' => 'model.create', |
|
22 | 285 | 'uses' => 'AdminController@getCreate', |
|
0 ignored issues
–
show
The controller
App\Http\Controllers\Sle...rollers\AdminController does not seem to exist.
If there is a route defined but the controller class cannot be found there are two options: 1. the controller class needs to be implemented or 2. the route is outdated and can be removed. If ?FooController? was found and ?BarController? is missing for the following example, either the controller should be implemented or the route should be removed: $app->group(['as' => 'foo', 'prefix' => 'foo', 'namespace' => 'Foo'], function($app) {
$app->group(['as' => 'foo', 'prefix' => 'foo'], function($app) {
$app->get('/all/{from}/{to}', ['as' => 'all', 'uses' => 'FooController@getFoo']);
$app->get('/all/{from}/{to}', ['as' => 'all', 'uses' => 'BarController@getBar']);
});
});
![]() |
|||
23 | 285 | ]); |
|
24 | |||
25 | 285 | $router->post('{adminModel}/create', [ |
|
26 | 285 | 'as' => 'model.store', |
|
27 | 285 | 'uses' => 'AdminController@postStore', |
|
0 ignored issues
–
show
The controller
App\Http\Controllers\Sle...rollers\AdminController does not seem to exist.
If there is a route defined but the controller class cannot be found there are two options: 1. the controller class needs to be implemented or 2. the route is outdated and can be removed. If ?FooController? was found and ?BarController? is missing for the following example, either the controller should be implemented or the route should be removed: $app->group(['as' => 'foo', 'prefix' => 'foo', 'namespace' => 'Foo'], function($app) {
$app->group(['as' => 'foo', 'prefix' => 'foo'], function($app) {
$app->get('/all/{from}/{to}', ['as' => 'all', 'uses' => 'FooController@getFoo']);
$app->get('/all/{from}/{to}', ['as' => 'all', 'uses' => 'BarController@getBar']);
});
});
![]() |
|||
28 | 285 | ]); |
|
29 | |||
30 | 285 | $router->get('{adminModel}/{adminModelId?}/edit', [ |
|
31 | 285 | 'as' => 'model.edit', |
|
32 | 285 | 'uses' => 'AdminController@getEdit', |
|
0 ignored issues
–
show
The controller
App\Http\Controllers\Sle...rollers\AdminController does not seem to exist.
If there is a route defined but the controller class cannot be found there are two options: 1. the controller class needs to be implemented or 2. the route is outdated and can be removed. If ?FooController? was found and ?BarController? is missing for the following example, either the controller should be implemented or the route should be removed: $app->group(['as' => 'foo', 'prefix' => 'foo', 'namespace' => 'Foo'], function($app) {
$app->group(['as' => 'foo', 'prefix' => 'foo'], function($app) {
$app->get('/all/{from}/{to}', ['as' => 'all', 'uses' => 'FooController@getFoo']);
$app->get('/all/{from}/{to}', ['as' => 'all', 'uses' => 'BarController@getBar']);
});
});
![]() |
|||
33 | 285 | ]); |
|
34 | |||
35 | 285 | $router->post('{adminModel}/{adminModelId?}/edit', [ |
|
36 | 285 | 'as' => 'model.update', |
|
37 | 285 | 'uses' => 'AdminController@postUpdate', |
|
0 ignored issues
–
show
The controller
App\Http\Controllers\Sle...rollers\AdminController does not seem to exist.
If there is a route defined but the controller class cannot be found there are two options: 1. the controller class needs to be implemented or 2. the route is outdated and can be removed. If ?FooController? was found and ?BarController? is missing for the following example, either the controller should be implemented or the route should be removed: $app->group(['as' => 'foo', 'prefix' => 'foo', 'namespace' => 'Foo'], function($app) {
$app->group(['as' => 'foo', 'prefix' => 'foo'], function($app) {
$app->get('/all/{from}/{to}', ['as' => 'all', 'uses' => 'FooController@getFoo']);
$app->get('/all/{from}/{to}', ['as' => 'all', 'uses' => 'BarController@getBar']);
});
});
![]() |
|||
38 | 285 | ]); |
|
39 | |||
40 | 285 | $router->delete('{adminModel}/{adminModelId?}/delete', [ |
|
41 | 285 | 'as' => 'model.delete', |
|
42 | 285 | 'uses' => 'AdminController@deleteDelete', |
|
0 ignored issues
–
show
The controller
App\Http\Controllers\Sle...rollers\AdminController does not seem to exist.
If there is a route defined but the controller class cannot be found there are two options: 1. the controller class needs to be implemented or 2. the route is outdated and can be removed. If ?FooController? was found and ?BarController? is missing for the following example, either the controller should be implemented or the route should be removed: $app->group(['as' => 'foo', 'prefix' => 'foo', 'namespace' => 'Foo'], function($app) {
$app->group(['as' => 'foo', 'prefix' => 'foo'], function($app) {
$app->get('/all/{from}/{to}', ['as' => 'all', 'uses' => 'FooController@getFoo']);
$app->get('/all/{from}/{to}', ['as' => 'all', 'uses' => 'BarController@getBar']);
});
});
![]() |
|||
43 | 285 | ]); |
|
44 | |||
45 | 285 | $router->delete('{adminModel}/{adminModelId?}/destroy', [ |
|
46 | 285 | 'as' => 'model.destroy', |
|
47 | 285 | 'uses' => 'AdminController@deleteDestroy', |
|
0 ignored issues
–
show
The controller
App\Http\Controllers\Sle...rollers\AdminController does not seem to exist.
If there is a route defined but the controller class cannot be found there are two options: 1. the controller class needs to be implemented or 2. the route is outdated and can be removed. If ?FooController? was found and ?BarController? is missing for the following example, either the controller should be implemented or the route should be removed: $app->group(['as' => 'foo', 'prefix' => 'foo', 'namespace' => 'Foo'], function($app) {
$app->group(['as' => 'foo', 'prefix' => 'foo'], function($app) {
$app->get('/all/{from}/{to}', ['as' => 'all', 'uses' => 'FooController@getFoo']);
$app->get('/all/{from}/{to}', ['as' => 'all', 'uses' => 'BarController@getBar']);
});
});
![]() |
|||
48 | 285 | ]); |
|
49 | |||
50 | 285 | $router->post('{adminModel}/{adminModelId?}/restore', [ |
|
51 | 285 | 'as' => 'model.restore', |
|
52 | 285 | 'uses' => 'AdminController@postRestore', |
|
0 ignored issues
–
show
The controller
App\Http\Controllers\Sle...rollers\AdminController does not seem to exist.
If there is a route defined but the controller class cannot be found there are two options: 1. the controller class needs to be implemented or 2. the route is outdated and can be removed. If ?FooController? was found and ?BarController? is missing for the following example, either the controller should be implemented or the route should be removed: $app->group(['as' => 'foo', 'prefix' => 'foo', 'namespace' => 'Foo'], function($app) {
$app->group(['as' => 'foo', 'prefix' => 'foo'], function($app) {
$app->get('/all/{from}/{to}', ['as' => 'all', 'uses' => 'FooController@getFoo']);
$app->get('/all/{from}/{to}', ['as' => 'all', 'uses' => 'BarController@getBar']);
});
});
![]() |
|||
53 | 285 | ]); |
|
54 | |||
55 | 285 | $router->get('{adminWildcard}', [ |
|
56 | 285 | 'as' => 'wildcard', |
|
57 | 285 | 'uses' => 'AdminController@getWildcard', |
|
0 ignored issues
–
show
The controller
App\Http\Controllers\Sle...rollers\AdminController does not seem to exist.
If there is a route defined but the controller class cannot be found there are two options: 1. the controller class needs to be implemented or 2. the route is outdated and can be removed. If ?FooController? was found and ?BarController? is missing for the following example, either the controller should be implemented or the route should be removed: $app->group(['as' => 'foo', 'prefix' => 'foo', 'namespace' => 'Foo'], function($app) {
$app->group(['as' => 'foo', 'prefix' => 'foo'], function($app) {
$app->get('/all/{from}/{to}', ['as' => 'all', 'uses' => 'FooController@getFoo']);
$app->get('/all/{from}/{to}', ['as' => 'all', 'uses' => 'BarController@getBar']);
});
});
![]() |
|||
58 | 285 | ]); |
|
59 | 285 | ||
60 | $router->group(['middleware' => config('sleeping_owl.env_editor_middlewares')], function (Router $router) { |
||
61 | $router->get(config('sleeping_owl.env_editor_url'), [ |
||
62 | 'as' => 'env.editor', |
||
63 | 'uses' => 'AdminController@getEnvEditor', |
||
64 | ]); |
||
65 | $router->post(config('sleeping_owl.env_editor_url'), [ |
||
66 | 'as' => 'env.editor.post', |
||
67 | 'uses' => 'AdminController@postEnvEditor', |
||
68 | ]); |
||
69 | }); |
||
70 | }); |
||
71 |
If there is a route defined but the controller class cannot be found there are two options: 1. the controller class needs to be implemented or 2. the route is outdated and can be removed.
If ?FooController? was found and ?BarController? is missing for the following example, either the controller should be implemented or the route should be removed: