@@ -52,8 +52,8 @@ discard block |
||
52 | 52 | protected function mapWebRoutes() |
53 | 53 | { |
54 | 54 | Route::middleware('web') |
55 | - ->namespace($this->namespace) |
|
56 | - ->group(base_path('routes/web.php')); |
|
55 | + ->namespace($this->namespace) |
|
56 | + ->group(base_path('routes/web.php')); |
|
57 | 57 | } |
58 | 58 | |
59 | 59 | /** |
@@ -66,8 +66,8 @@ discard block |
||
66 | 66 | protected function mapApiRoutes() |
67 | 67 | { |
68 | 68 | Route::prefix('api') |
69 | - ->middleware('api') |
|
70 | - ->namespace($this->namespace) |
|
71 | - ->group(base_path('routes/api.php')); |
|
69 | + ->middleware('api') |
|
70 | + ->namespace($this->namespace) |
|
71 | + ->group(base_path('routes/api.php')); |
|
72 | 72 | } |
73 | 73 | } |
@@ -29,7 +29,7 @@ |
||
29 | 29 | // ->hourly(); |
30 | 30 | |
31 | 31 | $schedule->command('activations:clean') |
32 | - ->daily(); |
|
32 | + ->daily(); |
|
33 | 33 | } |
34 | 34 | |
35 | 35 | /** |
@@ -124,8 +124,8 @@ |
||
124 | 124 | } |
125 | 125 | |
126 | 126 | $themes = Theme::where('status', 1) |
127 | - ->orderBy('name', 'asc') |
|
128 | - ->get(); |
|
127 | + ->orderBy('name', 'asc') |
|
128 | + ->get(); |
|
129 | 129 | |
130 | 130 | $currentTheme = Theme::find($user->profile->theme_id); |
131 | 131 |