@@ -14,7 +14,7 @@ |
||
| 14 | 14 | public function indexFeature() |
| 15 | 15 | { |
| 16 | 16 | $features = config('adminetic.caching', true) |
| 17 | - ? (Cache::has('features') ? Cache::get('features') : Cache::rememberForever('features', function () { |
|
| 17 | + ? (Cache::has('features') ? Cache::get('features') : Cache::rememberForever('features', function() { |
|
| 18 | 18 | return Feature::latest()->get(); |
| 19 | 19 | })) |
| 20 | 20 | : Feature::latest()->get(); |
@@ -188,7 +188,7 @@ discard block |
||
| 188 | 188 | */ |
| 189 | 189 | protected function registerResource() |
| 190 | 190 | { |
| 191 | - if (! config('website.publish_migrations', true)) { |
|
| 191 | + if (!config('website.publish_migrations', true)) { |
|
| 192 | 192 | $this->loadMigrationsFrom(__DIR__.'/../../database/migrations'); // Loading Migration Files |
| 193 | 193 | } |
| 194 | 194 | $this->loadViewsFrom(__DIR__.'/../../resources/views', 'website'); // Loading Views Files |
@@ -217,7 +217,7 @@ discard block |
||
| 217 | 217 | */ |
| 218 | 218 | protected function registerRoutes() |
| 219 | 219 | { |
| 220 | - Route::group($this->routeConfiguration(), function () { |
|
| 220 | + Route::group($this->routeConfiguration(), function() { |
|
| 221 | 221 | $this->loadRoutesFrom(__DIR__.'/../../routes/web.php'); |
| 222 | 222 | }); |
| 223 | 223 | } |