|
@@ -26,20 +26,20 @@ discard block |
|
|
block discarded – undo |
|
26
|
26
|
} |
|
27
|
27
|
|
|
28
|
28
|
if ($this->app->runningInConsole()) { |
|
29
|
|
- $this->commands([\Acacha\AdminLTETemplateLaravel\Console\PublishAdminLTE::class]); |
|
30
|
|
- $this->commands([\Acacha\AdminLTETemplateLaravel\Console\PublishAdminLTEAlt::class]); |
|
31
|
|
- $this->commands([\Acacha\AdminLTETemplateLaravel\Console\PublishAdminLTESidebar::class]); |
|
32
|
|
- $this->commands([\Acacha\AdminLTETemplateLaravel\Console\PublishAdminLTESidebarAlt::class]); |
|
33
|
|
- $this->commands([\Acacha\AdminLTETemplateLaravel\Console\MakeAdminUserSeeder::class]); |
|
34
|
|
- $this->commands([\Acacha\AdminLTETemplateLaravel\Console\AdminLTEAdmin::class]); |
|
35
|
|
- $this->commands([\Acacha\AdminLTETemplateLaravel\Console\AdminLTEAdminAlt::class]); |
|
36
|
|
- $this->commands([\Acacha\AdminLTETemplateLaravel\Console\MakeView::class]); |
|
37
|
|
- $this->commands([\Acacha\AdminLTETemplateLaravel\Console\AdminLTEMenu::class]); |
|
38
|
|
- $this->commands([\Acacha\AdminLTETemplateLaravel\Console\AdminLTEMenuAlt::class]); |
|
39
|
|
- $this->commands([\Acacha\AdminLTETemplateLaravel\Console\MakeRoute::class]); |
|
|
29
|
+ $this->commands([ \Acacha\AdminLTETemplateLaravel\Console\PublishAdminLTE::class ]); |
|
|
30
|
+ $this->commands([ \Acacha\AdminLTETemplateLaravel\Console\PublishAdminLTEAlt::class ]); |
|
|
31
|
+ $this->commands([ \Acacha\AdminLTETemplateLaravel\Console\PublishAdminLTESidebar::class ]); |
|
|
32
|
+ $this->commands([ \Acacha\AdminLTETemplateLaravel\Console\PublishAdminLTESidebarAlt::class ]); |
|
|
33
|
+ $this->commands([ \Acacha\AdminLTETemplateLaravel\Console\MakeAdminUserSeeder::class ]); |
|
|
34
|
+ $this->commands([ \Acacha\AdminLTETemplateLaravel\Console\AdminLTEAdmin::class ]); |
|
|
35
|
+ $this->commands([ \Acacha\AdminLTETemplateLaravel\Console\AdminLTEAdminAlt::class ]); |
|
|
36
|
+ $this->commands([ \Acacha\AdminLTETemplateLaravel\Console\MakeView::class ]); |
|
|
37
|
+ $this->commands([ \Acacha\AdminLTETemplateLaravel\Console\AdminLTEMenu::class ]); |
|
|
38
|
+ $this->commands([ \Acacha\AdminLTETemplateLaravel\Console\AdminLTEMenuAlt::class ]); |
|
|
39
|
+ $this->commands([ \Acacha\AdminLTETemplateLaravel\Console\MakeRoute::class ]); |
|
40
|
40
|
} |
|
41
|
41
|
|
|
42
|
|
- $this->app->bind('AdminLTE', function () { |
|
|
42
|
+ $this->app->bind('AdminLTE', function() { |
|
43
|
43
|
return new \Acacha\AdminLTETemplateLaravel\AdminLTE(); |
|
44
|
44
|
}); |
|
45
|
45
|
|
|
@@ -102,7 +102,7 @@ discard block |
|
|
block discarded – undo |
|
102
|
102
|
if (!$this->app->routesAreCached()) { |
|
103
|
103
|
$router = app('router'); |
|
104
|
104
|
|
|
105
|
|
- $router->group(['namespace' => $this->getAppNamespace().'Http\Controllers'], function () { |
|
|
105
|
+ $router->group([ 'namespace' => $this->getAppNamespace().'Http\Controllers' ], function() { |
|
106
|
106
|
require __DIR__.'/../Http/routes.php'; |
|
107
|
107
|
}); |
|
108
|
108
|
} |