@@ -12,15 +12,15 @@ discard block |
||
12 | 12 | |
13 | 13 | protected static function bootHasSlug() |
14 | 14 | { |
15 | - static::created(function ($model) { |
|
15 | + static::created(function($model) { |
|
16 | 16 | $model->setSlugs(); |
17 | 17 | }); |
18 | 18 | |
19 | - static::updated(function ($model) { |
|
19 | + static::updated(function($model) { |
|
20 | 20 | $model->setSlugs(); |
21 | 21 | }); |
22 | 22 | |
23 | - static::restored(function ($model) { |
|
23 | + static::restored(function($model) { |
|
24 | 24 | $model->setSlugs($restoring = true); |
25 | 25 | }); |
26 | 26 | } |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | |
46 | 46 | public function scopeForSlug($query, $slug) |
47 | 47 | { |
48 | - return $query->whereHas('slugs', function ($query) use ($slug) { |
|
48 | + return $query->whereHas('slugs', function($query) use ($slug) { |
|
49 | 49 | $query->whereSlug($slug); |
50 | 50 | $query->whereActive(true); |
51 | 51 | $query->whereLocale(app()->getLocale()); |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | |
55 | 55 | public function scopeForInactiveSlug($query, $slug) |
56 | 56 | { |
57 | - return $query->whereHas('slugs', function ($query) use ($slug) { |
|
57 | + return $query->whereHas('slugs', function($query) use ($slug) { |
|
58 | 58 | $query->whereSlug($slug); |
59 | 59 | $query->whereLocale(app()->getLocale()); |
60 | 60 | })->with(['slugs']); |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | |
63 | 63 | public function scopeForFallbackLocaleSlug($query, $slug) |
64 | 64 | { |
65 | - return $query->whereHas('slugs', function ($query) use ($slug) { |
|
65 | + return $query->whereHas('slugs', function($query) use ($slug) { |
|
66 | 66 | $query->whereSlug($slug); |
67 | 67 | $query->whereActive(true); |
68 | 68 | $query->whereLocale(config('translatable.fallback_locale')); |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | foreach ($slugParams as $key => $value) { |
106 | 106 | //check variations of the slug |
107 | 107 | if ($key == 'slug') { |
108 | - $query->where(function ($query) use ($value) { |
|
108 | + $query->where(function($query) use ($value) { |
|
109 | 109 | $query->orWhere('slug', $value); |
110 | 110 | $query->orWhere('slug', $value . '-' . $this->getSuffixSlug()); |
111 | 111 | for ($i = 2; $i <= $this->nb_variation_slug; $i++) { |
@@ -174,14 +174,14 @@ discard block |
||
174 | 174 | |
175 | 175 | public function getActiveSlug($locale = null) |
176 | 176 | { |
177 | - return $this->slugs->first(function ($slug) use ($locale) { |
|
177 | + return $this->slugs->first(function($slug) use ($locale) { |
|
178 | 178 | return ($slug->locale === ($locale ?? app()->getLocale())) && $slug->active; |
179 | 179 | }) ?? null; |
180 | 180 | } |
181 | 181 | |
182 | 182 | public function getFallbackActiveSlug() |
183 | 183 | { |
184 | - return $this->slugs->first(function ($slug) { |
|
184 | + return $this->slugs->first(function($slug) { |
|
185 | 185 | return $slug->locale === config('translatable.fallback_locale') && $slug->active; |
186 | 186 | }) ?? null; |
187 | 187 | } |
@@ -11,14 +11,14 @@ |
||
11 | 11 | |
12 | 12 | public function scopeMine($query) |
13 | 13 | { |
14 | - return $query->whereHas('revisions', function ($query) { |
|
14 | + return $query->whereHas('revisions', function($query) { |
|
15 | 15 | $query->where('user_id', auth('twill_users')->user()->id); |
16 | 16 | }); |
17 | 17 | } |
18 | 18 | |
19 | 19 | public function revisionsArray() |
20 | 20 | { |
21 | - return $this->revisions->map(function ($revision) { |
|
21 | + return $this->revisions->map(function($revision) { |
|
22 | 22 | return [ |
23 | 23 | 'id' => $revision->id, |
24 | 24 | 'author' => $revision->user->name ?? 'Unknown', |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | |
34 | 34 | private function findMedia($role, $crop = "default") |
35 | 35 | { |
36 | - $media = $this->medias->first(function ($media) use ($role, $crop) { |
|
36 | + $media = $this->medias->first(function($media) use ($role, $crop) { |
|
37 | 37 | if (config('twill.media_library.translated_form_fields', false)) { |
38 | 38 | $localeScope = $media->pivot->locale === app()->getLocale(); |
39 | 39 | } |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | }); |
43 | 43 | |
44 | 44 | if (!$media && config('twill.media_library.translated_form_fields', false)) { |
45 | - $media = $this->medias->first(function ($media) use ($role, $crop) { |
|
45 | + $media = $this->medias->first(function($media) use ($role, $crop) { |
|
46 | 46 | return $media->pivot->role === $role && $media->pivot->crop === $crop; |
47 | 47 | }); |
48 | 48 | } |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | |
86 | 86 | public function images($role, $crop = "default", $params = []) |
87 | 87 | { |
88 | - $medias = $this->medias->filter(function ($media) use ($role, $crop) { |
|
88 | + $medias = $this->medias->filter(function($media) use ($role, $crop) { |
|
89 | 89 | return $media->pivot->role === $role && $media->pivot->crop === $crop; |
90 | 90 | }); |
91 | 91 | |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | |
121 | 121 | public function imagesAsArrays($role, $crop = "default", $params = []) |
122 | 122 | { |
123 | - $medias = $this->medias->filter(function ($media) use ($role, $crop) { |
|
123 | + $medias = $this->medias->filter(function($media) use ($role, $crop) { |
|
124 | 124 | return $media->pivot->role === $role && $media->pivot->crop === $crop; |
125 | 125 | }); |
126 | 126 | |
@@ -136,12 +136,12 @@ discard block |
||
136 | 136 | public function imageAltText($role, $media = null) |
137 | 137 | { |
138 | 138 | if (!$media) { |
139 | - $media = $this->medias->first(function ($media) use ($role) { |
|
139 | + $media = $this->medias->first(function($media) use ($role) { |
|
140 | 140 | if (config('twill.media_library.translated_form_fields', false)) { |
141 | 141 | $localeScope = $media->pivot->locale === app()->getLocale(); |
142 | 142 | } |
143 | 143 | |
144 | - return $media->pivot->role === $role && ($localeScope ?? true);; |
|
144 | + return $media->pivot->role === $role && ($localeScope ?? true); ; |
|
145 | 145 | }); |
146 | 146 | } |
147 | 147 | |
@@ -155,12 +155,12 @@ discard block |
||
155 | 155 | public function imageCaption($role, $media = null) |
156 | 156 | { |
157 | 157 | if (!$media) { |
158 | - $media = $this->medias->first(function ($media) use ($role) { |
|
158 | + $media = $this->medias->first(function($media) use ($role) { |
|
159 | 159 | if (config('twill.media_library.translated_form_fields', false)) { |
160 | 160 | $localeScope = $media->pivot->locale === app()->getLocale(); |
161 | 161 | } |
162 | 162 | |
163 | - return $media->pivot->role === $role && ($localeScope ?? true);; |
|
163 | + return $media->pivot->role === $role && ($localeScope ?? true); ; |
|
164 | 164 | }); |
165 | 165 | } |
166 | 166 | |
@@ -174,12 +174,12 @@ discard block |
||
174 | 174 | public function imageVideo($role, $media = null) |
175 | 175 | { |
176 | 176 | if (!$media) { |
177 | - $media = $this->medias->first(function ($media) use ($role) { |
|
177 | + $media = $this->medias->first(function($media) use ($role) { |
|
178 | 178 | if (config('twill.media_library.translated_form_fields', false)) { |
179 | 179 | $localeScope = $media->pivot->locale === app()->getLocale(); |
180 | 180 | } |
181 | 181 | |
182 | - return $media->pivot->role === $role && ($localeScope ?? true);; |
|
182 | + return $media->pivot->role === $role && ($localeScope ?? true); ; |
|
183 | 183 | }); |
184 | 184 | } |
185 | 185 | |
@@ -248,7 +248,7 @@ discard block |
||
248 | 248 | |
249 | 249 | public function imageObjects($role, $crop = "default") |
250 | 250 | { |
251 | - return $this->medias->filter(function ($media) use ($role, $crop) { |
|
251 | + return $this->medias->filter(function($media) use ($role, $crop) { |
|
252 | 252 | return $media->pivot->role === $role && $media->pivot->crop === $crop; |
253 | 253 | }); |
254 | 254 | } |
@@ -16,12 +16,12 @@ discard block |
||
16 | 16 | { |
17 | 17 | $locale = $locale ?? app()->getLocale(); |
18 | 18 | |
19 | - $file = $this->files->first(function ($file) use ($role, $locale) { |
|
19 | + $file = $this->files->first(function($file) use ($role, $locale) { |
|
20 | 20 | return $file->pivot->role === $role && $file->pivot->locale === $locale; |
21 | 21 | }); |
22 | 22 | |
23 | 23 | if (!$file && config('translatable.use_property_fallback', false)) { |
24 | - $file = $this->files->first(function ($file) use ($role) { |
|
24 | + $file = $this->files->first(function($file) use ($role) { |
|
25 | 25 | return $file->pivot->role === $role && $file->pivot->locale === config('translatable.fallback_locale'); |
26 | 26 | }); |
27 | 27 | } |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | { |
48 | 48 | $locale = $locale ?? app()->getLocale(); |
49 | 49 | |
50 | - $files = $this->files->filter(function ($file) use ($role, $locale) { |
|
50 | + $files = $this->files->filter(function($file) use ($role, $locale) { |
|
51 | 51 | return $file->pivot->role === $role && $file->pivot->locale === $locale; |
52 | 52 | }); |
53 | 53 |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | |
32 | 32 | return $this->relatedCache[$browser_name] = $this->relatedItems |
33 | 33 | ->where('browser_name', $browser_name) |
34 | - ->map(function ($item) { |
|
34 | + ->map(function($item) { |
|
35 | 35 | return $item->related; |
36 | 36 | }); |
37 | 37 | } |
@@ -46,9 +46,9 @@ discard block |
||
46 | 46 | |
47 | 47 | $position = 1; |
48 | 48 | |
49 | - Collection::make($items)->map(function ($item) { |
|
49 | + Collection::make($items)->map(function($item) { |
|
50 | 50 | return Arr::only($item, ['endpointType', 'id']); |
51 | - })->each(function ($values) use ($browser_name, &$position) { |
|
51 | + })->each(function($values) use ($browser_name, &$position) { |
|
52 | 52 | RelatedItem::create([ |
53 | 53 | 'subject_id' => $this->getKey(), |
54 | 54 | 'subject_type' => $this->getMorphClass(), |
@@ -21,7 +21,7 @@ |
||
21 | 21 | |
22 | 22 | public function scopeForBucket($query, $bucketKey) |
23 | 23 | { |
24 | - return $query->where('bucket_key', $bucketKey)->get()->map(function ($feature) { |
|
24 | + return $query->where('bucket_key', $bucketKey)->get()->map(function($feature) { |
|
25 | 25 | return $feature->featured; |
26 | 26 | })->filter(); |
27 | 27 | } |
@@ -109,13 +109,13 @@ discard block |
||
109 | 109 | } |
110 | 110 | |
111 | 111 | if (config('twill.enabled.media-library')) { |
112 | - $this->app->singleton('imageService', function () { |
|
112 | + $this->app->singleton('imageService', function() { |
|
113 | 113 | return $this->app->make(config('twill.media_library.image_service')); |
114 | 114 | }); |
115 | 115 | } |
116 | 116 | |
117 | 117 | if (config('twill.enabled.file-library')) { |
118 | - $this->app->singleton('fileService', function () { |
|
118 | + $this->app->singleton('fileService', function() { |
|
119 | 119 | return $this->app->make(config('twill.file_library.file_service')); |
120 | 120 | }); |
121 | 121 | } |
@@ -343,20 +343,20 @@ discard block |
||
343 | 343 | { |
344 | 344 | $blade = $this->app['view']->getEngineResolver()->resolve('blade')->getCompiler(); |
345 | 345 | |
346 | - $blade->directive('dd', function ($param) { |
|
346 | + $blade->directive('dd', function($param) { |
|
347 | 347 | return "<?php dd({$param}); ?>"; |
348 | 348 | }); |
349 | 349 | |
350 | - $blade->directive('dumpData', function ($data) { |
|
350 | + $blade->directive('dumpData', function($data) { |
|
351 | 351 | return sprintf("<?php (new Symfony\Component\VarDumper\VarDumper)->dump(%s); exit; ?>", |
352 | 352 | null != $data ? $data : "get_defined_vars()"); |
353 | 353 | }); |
354 | 354 | |
355 | - $blade->directive('formField', function ($expression) use ($blade) { |
|
355 | + $blade->directive('formField', function($expression) use ($blade) { |
|
356 | 356 | return $this->includeView('partials.form._', $expression); |
357 | 357 | }); |
358 | 358 | |
359 | - $blade->directive('partialView', function ($expression) use ($blade) { |
|
359 | + $blade->directive('partialView', function($expression) use ($blade) { |
|
360 | 360 | |
361 | 361 | $expressionAsArray = str_getcsv($expression, ',', '\''); |
362 | 362 | |
@@ -392,13 +392,13 @@ discard block |
||
392 | 392 | ?>"; |
393 | 393 | }); |
394 | 394 | |
395 | - $blade->directive('pushonce', function ($expression) { |
|
395 | + $blade->directive('pushonce', function($expression) { |
|
396 | 396 | list($pushName, $pushSub) = explode(':', trim(substr($expression, 1, -1))); |
397 | 397 | $key = '__pushonce_' . $pushName . '_' . str_replace('-', '_', $pushSub); |
398 | 398 | return "<?php if(! isset(\$__env->{$key})): \$__env->{$key} = 1; \$__env->startPush('{$pushName}'); ?>"; |
399 | 399 | }); |
400 | 400 | |
401 | - $blade->directive('endpushonce', function () { |
|
401 | + $blade->directive('endpushonce', function() { |
|
402 | 402 | return '<?php $__env->stopPush(); endif; ?>'; |
403 | 403 | }); |
404 | 404 | } |
@@ -424,7 +424,7 @@ discard block |
||
424 | 424 | |
425 | 425 | View::composer('twill::partials.navigation.*', ActiveNavigation::class); |
426 | 426 | |
427 | - View::composer(['admin.*', 'templates.*', 'twill::*'], function ($view) { |
|
427 | + View::composer(['admin.*', 'templates.*', 'twill::*'], function($view) { |
|
428 | 428 | $with = array_merge([ |
429 | 429 | 'renderForBlocks' => false, |
430 | 430 | 'renderForModal' => false, |
@@ -49,8 +49,8 @@ discard block |
||
49 | 49 | 'as' => 'admin.', |
50 | 50 | 'middleware' => [config('twill.admin_middleware_group', 'web')], |
51 | 51 | 'prefix' => rtrim(ltrim(config('twill.admin_app_path'), '/'), '/'), |
52 | - ], function ($router) { |
|
53 | - $router->group(['middleware' => ['twill_auth:twill_users', 'impersonate', 'validateBackHistory']], function ($router) { |
|
52 | + ], function($router) { |
|
53 | + $router->group(['middleware' => ['twill_auth:twill_users', 'impersonate', 'validateBackHistory']], function($router) { |
|
54 | 54 | require base_path('routes/admin.php'); |
55 | 55 | }); |
56 | 56 | }); |
@@ -63,16 +63,16 @@ discard block |
||
63 | 63 | 'middleware' => [config('twill.admin_middleware_group', 'web')], |
64 | 64 | 'prefix' => rtrim(ltrim(config('twill.admin_app_path'), '/'), '/'), |
65 | 65 | ], |
66 | - function ($router) { |
|
67 | - $router->group(['middleware' => ['twill_auth:twill_users', 'impersonate', 'validateBackHistory']], function ($router) { |
|
66 | + function($router) { |
|
67 | + $router->group(['middleware' => ['twill_auth:twill_users', 'impersonate', 'validateBackHistory']], function($router) { |
|
68 | 68 | require __DIR__ . '/../routes/admin.php'; |
69 | 69 | }); |
70 | 70 | |
71 | - $router->group([], function ($router) { |
|
71 | + $router->group([], function($router) { |
|
72 | 72 | require __DIR__ . '/../routes/auth.php'; |
73 | 73 | }); |
74 | 74 | |
75 | - $router->group(['middleware' => $this->app->environment('production') ? ['twill_auth:twill_users'] : []], function ($router) { |
|
75 | + $router->group(['middleware' => $this->app->environment('production') ? ['twill_auth:twill_users'] : []], function($router) { |
|
76 | 76 | require __DIR__ . '/../routes/templates.php'; |
77 | 77 | }); |
78 | 78 | } |
@@ -84,8 +84,8 @@ discard block |
||
84 | 84 | 'domain' => config('app.url'), |
85 | 85 | 'middleware' => [config('twill.admin_middleware_group', 'web')], |
86 | 86 | ], |
87 | - function ($router) { |
|
88 | - $router->group(['middleware' => $this->app->environment('production') ? ['twill_auth:twill_users'] : []], function ($router) { |
|
87 | + function($router) { |
|
88 | + $router->group(['middleware' => $this->app->environment('production') ? ['twill_auth:twill_users'] : []], function($router) { |
|
89 | 89 | require __DIR__ . '/../routes/templates.php'; |
90 | 90 | }); |
91 | 91 | } |
@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | */ |
119 | 119 | protected function registerMacros() |
120 | 120 | { |
121 | - Route::macro('moduleShowWithPreview', function ($moduleName, $routePrefix = null, $controllerName = null) { |
|
121 | + Route::macro('moduleShowWithPreview', function($moduleName, $routePrefix = null, $controllerName = null) { |
|
122 | 122 | if ($routePrefix === null) { |
123 | 123 | $routePrefix = $moduleName; |
124 | 124 | } |
@@ -134,12 +134,12 @@ discard block |
||
134 | 134 | Route::name($moduleName . '.preview')->get('/admin-preview' . $routePrefix . '{slug}', $controllerName . 'Controller@show')->middleware(['web', 'twill_auth:twill_users', 'can:list']); |
135 | 135 | }); |
136 | 136 | |
137 | - Route::macro('module', function ($slug, $options = [], $resource_options = [], $resource = true) { |
|
137 | + Route::macro('module', function($slug, $options = [], $resource_options = [], $resource = true) { |
|
138 | 138 | |
139 | 139 | $slugs = explode('.', $slug); |
140 | 140 | $prefixSlug = str_replace('.', "/", $slug); |
141 | 141 | $_slug = Arr::last($slugs); |
142 | - $className = implode("", array_map(function ($s) { |
|
142 | + $className = implode("", array_map(function($s) { |
|
143 | 143 | return ucfirst(Str::singular($s)); |
144 | 144 | }, $slugs)); |
145 | 145 | |
@@ -186,7 +186,7 @@ discard block |
||
186 | 186 | |
187 | 187 | if ($resource) { |
188 | 188 | $customRoutePrefix = !empty($groupPrefix) ? "{$groupPrefix}." : ""; |
189 | - Route::group(['as' => $customRoutePrefix], function () use ($slug, $className, $resource_options) { |
|
189 | + Route::group(['as' => $customRoutePrefix], function() use ($slug, $className, $resource_options) { |
|
190 | 190 | Route::resource($slug, "{$className}Controller", $resource_options); |
191 | 191 | }); |
192 | 192 | } |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | |
43 | 43 | $featuredSources = $this->getFeaturedSources($request, $featuredSection, $filters['search'] ?? ''); |
44 | 44 | |
45 | - $contentTypes = Collection::make($featuredSources)->map(function ($source, $sourceKey) { |
|
45 | + $contentTypes = Collection::make($featuredSources)->map(function($source, $sourceKey) { |
|
46 | 46 | return [ |
47 | 47 | 'label' => $source['name'], |
48 | 48 | 'value' => $sourceKey, |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | |
55 | 55 | return [ |
56 | 56 | 'source' => [ |
57 | - 'content_type' => Arr::first($contentTypes, function ($contentTypeItem) use ($request) { |
|
57 | + 'content_type' => Arr::first($contentTypes, function($contentTypeItem) use ($request) { |
|
58 | 58 | return $contentTypeItem['value'] == $request->get('content_type'); |
59 | 59 | }), |
60 | 60 | 'items' => $source['items'], |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | private function getFeaturedItemsByBucket($featuredSection, $featuredSectionKey) |
100 | 100 | { |
101 | 101 | $bucketRouteConfig = $this->config->get('twill.bucketsRoutes') ?? [$featuredSectionKey => 'featured']; |
102 | - return Collection::make($featuredSection['buckets'])->map(function ($bucket, $bucketKey) use ($featuredSectionKey, $bucketRouteConfig) { |
|
102 | + return Collection::make($featuredSection['buckets'])->map(function($bucket, $bucketKey) use ($featuredSectionKey, $bucketRouteConfig) { |
|
103 | 103 | $routePrefix = $bucketRouteConfig[$featuredSectionKey]; |
104 | 104 | return [ |
105 | 105 | 'id' => $bucketKey, |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | 'acceptedSources' => Collection::make($bucket['bucketables'])->pluck('module'), |
109 | 109 | 'withToggleFeatured' => $bucket['with_starred_items'] ?? false, |
110 | 110 | 'toggleFeaturedLabels' => $bucket['starred_items_labels'] ?? [], |
111 | - 'children' => Feature::where('bucket_key', $bucketKey)->with('featured')->get()->map(function ($feature) { |
|
111 | + 'children' => Feature::where('bucket_key', $bucketKey)->with('featured')->get()->map(function($feature) { |
|
112 | 112 | if (($item = $feature->featured) != null) { |
113 | 113 | $repository = $this->getRepository($feature->featured_type); |
114 | 114 | $withImage = classHasTrait($repository, HandleMedias::class); |
@@ -126,7 +126,7 @@ discard block |
||
126 | 126 | 'thumbnail' => $item->defaultCmsImage(['w' => 100, 'h' => 100]), |
127 | 127 | ] : []); |
128 | 128 | } |
129 | - })->reject(function ($item) { |
|
129 | + })->reject(function($item) { |
|
130 | 130 | return is_null($item); |
131 | 131 | })->values()->toArray(), |
132 | 132 | ]; |
@@ -144,8 +144,8 @@ discard block |
||
144 | 144 | $fetchedModules = []; |
145 | 145 | $featuredSources = []; |
146 | 146 | |
147 | - Collection::make($featuredSection['buckets'])->map(function ($bucket, $bucketKey) use (&$fetchedModules, $search, $request) { |
|
148 | - return Collection::make($bucket['bucketables'])->mapWithKeys(function ($bucketable) use (&$fetchedModules, $bucketKey, $search, $request) { |
|
147 | + Collection::make($featuredSection['buckets'])->map(function($bucket, $bucketKey) use (&$fetchedModules, $search, $request) { |
|
148 | + return Collection::make($bucket['bucketables'])->mapWithKeys(function($bucketable) use (&$fetchedModules, $bucketKey, $search, $request) { |
|
149 | 149 | |
150 | 150 | $module = $bucketable['module']; |
151 | 151 | $repository = $this->getRepository($module); |
@@ -174,12 +174,12 @@ discard block |
||
174 | 174 | 'withImage' => $withImage, |
175 | 175 | ]]; |
176 | 176 | }); |
177 | - })->each(function ($bucketables, $bucket) use (&$featuredSources) { |
|
178 | - $bucketables->each(function ($bucketableData, $bucketable) use ($bucket, &$featuredSources) { |
|
177 | + })->each(function($bucketables, $bucket) use (&$featuredSources) { |
|
178 | + $bucketables->each(function($bucketableData, $bucketable) use ($bucket, &$featuredSources) { |
|
179 | 179 | $featuredSources[$bucketable]['name'] = $bucketableData['name']; |
180 | 180 | $featuredSources[$bucketable]['maxPage'] = $bucketableData['items']->lastPage(); |
181 | 181 | $featuredSources[$bucketable]['offset'] = $bucketableData['items']->perPage(); |
182 | - $featuredSources[$bucketable]['items'] = $bucketableData['items']->map(function ($item) use ($bucketableData, $bucketable) { |
|
182 | + $featuredSources[$bucketable]['items'] = $bucketableData['items']->map(function($item) use ($bucketableData, $bucketable) { |
|
183 | 183 | return [ |
184 | 184 | 'id' => $item->id, |
185 | 185 | 'name' => $item->titleInBucket ?? $item->title, |
@@ -208,8 +208,8 @@ discard block |
||
208 | 208 | */ |
209 | 209 | public function save(Request $request, DB $db) |
210 | 210 | { |
211 | - $db->transaction(function () use ($request) { |
|
212 | - Collection::make($request->get('buckets'))->each(function ($bucketables, $bucketKey) { |
|
211 | + $db->transaction(function() use ($request) { |
|
212 | + Collection::make($request->get('buckets'))->each(function($bucketables, $bucketKey) { |
|
213 | 213 | Feature::where('bucket_key', $bucketKey)->delete(); |
214 | 214 | foreach (($bucketables ?? []) as $position => $bucketable) { |
215 | 215 | Feature::create([ |