@@ -26,10 +26,10 @@ discard block |
||
26 | 26 | return $content |
27 | 27 | ->title(trans('admin.menu')) |
28 | 28 | ->description(trans('admin.list')) |
29 | - ->row(function (Row $row) { |
|
29 | + ->row(function(Row $row) { |
|
30 | 30 | $row->column(6, $this->treeView()->render()); |
31 | 31 | |
32 | - $row->column(6, function (Column $column) { |
|
32 | + $row->column(6, function(Column $column) { |
|
33 | 33 | $form = new \Encore\Admin\Widgets\Form(); |
34 | 34 | $form->action(admin_url('auth/menu')); |
35 | 35 | |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | |
76 | 76 | $tree->disableCreate(); |
77 | 77 | |
78 | - $tree->branch(function ($branch) { |
|
78 | + $tree->branch(function($branch) { |
|
79 | 79 | $payload = "<i class='fa {$branch['icon']}'></i> <strong>{$branch['title']}</strong>"; |
80 | 80 | |
81 | 81 | if (!isset($branch['children'])) { |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | */ |
49 | 49 | public function handle() |
50 | 50 | { |
51 | - $routes = collect($this->router->getRoutes())->filter(function (Route $route) { |
|
51 | + $routes = collect($this->router->getRoutes())->filter(function(Route $route) { |
|
52 | 52 | $uri = $route->uri(); |
53 | 53 | // built-in, parameterized and no-GET are ignored |
54 | 54 | return Str::startsWith($uri, 'admin/') |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | && !Str::contains($uri, '{') |
58 | 58 | && in_array('GET', $route->methods()); |
59 | 59 | }) |
60 | - ->map(function (Route $route) { |
|
60 | + ->map(function(Route $route) { |
|
61 | 61 | $uri = substr($route->uri(), strlen('admin/')); |
62 | 62 | |
63 | 63 | return [ |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | |
72 | 72 | $menus = Menu::all()->pluck('title', 'uri'); |
73 | 73 | // exclude exist ones |
74 | - $news = $routes->diffKeys($menus)->map(function ($item, $key) { |
|
74 | + $news = $routes->diffKeys($menus)->map(function($item, $key) { |
|
75 | 75 | return [ |
76 | 76 | 'title' => $item, |
77 | 77 | 'uri' => $key, |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | } else { |
86 | 86 | if ($this->hasOption('dry-run') && $this->option('dry-run')) { |
87 | 87 | $this->line('<info>The following menu items will be created</info>: '); |
88 | - $this->table(['Title', 'Uri'], array_map(function ($item) { |
|
88 | + $this->table(['Title', 'Uri'], array_map(function($item) { |
|
89 | 89 | return [ |
90 | 90 | $item['title'], |
91 | 91 | $item['uri'], |
@@ -29,7 +29,7 @@ |
||
29 | 29 | ]; |
30 | 30 | |
31 | 31 | try { |
32 | - DB::transaction(function () use ($model) { |
|
32 | + DB::transaction(function() use ($model) { |
|
33 | 33 | $model->delete(); |
34 | 34 | }); |
35 | 35 | } catch (\Exception $exception) { |
@@ -226,7 +226,7 @@ discard block |
||
226 | 226 | |
227 | 227 | $this->overwriteExistingField($name); |
228 | 228 | |
229 | - return tap($field, function ($field) { |
|
229 | + return tap($field, function($field) { |
|
230 | 230 | $this->fields->push($field); |
231 | 231 | }); |
232 | 232 | } |
@@ -248,7 +248,7 @@ discard block |
||
248 | 248 | |
249 | 249 | $this->overwriteExistingRelation($name); |
250 | 250 | |
251 | - return tap($relation, function ($relation) { |
|
251 | + return tap($relation, function($relation) { |
|
252 | 252 | $this->relations->push($relation); |
253 | 253 | }); |
254 | 254 | } |
@@ -265,7 +265,7 @@ discard block |
||
265 | 265 | } |
266 | 266 | |
267 | 267 | $this->fields = $this->fields->filter( |
268 | - function (Field $field) use ($name) { |
|
268 | + function(Field $field) use ($name) { |
|
269 | 269 | return $field->getName() != $name; |
270 | 270 | } |
271 | 271 | ); |
@@ -283,7 +283,7 @@ discard block |
||
283 | 283 | } |
284 | 284 | |
285 | 285 | $this->relations = $this->relations->filter( |
286 | - function (Relation $relation) use ($name) { |
|
286 | + function(Relation $relation) use ($name) { |
|
287 | 287 | return $relation->getName() != $name; |
288 | 288 | } |
289 | 289 | ); |
@@ -340,7 +340,7 @@ discard block |
||
340 | 340 | */ |
341 | 341 | public function setWidth($fieldWidth = 8, $labelWidth = 2) |
342 | 342 | { |
343 | - collect($this->fields)->each(function ($field) use ($fieldWidth, $labelWidth) { |
|
343 | + collect($this->fields)->each(function($field) use ($fieldWidth, $labelWidth) { |
|
344 | 344 | $field->setWidth($fieldWidth, $labelWidth); |
345 | 345 | }); |
346 | 346 |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | $this->disablePagination(); |
87 | 87 | } |
88 | 88 | |
89 | - $this->tools(function (Tools $tools) { |
|
89 | + $this->tools(function(Tools $tools) { |
|
90 | 90 | $tools->append(new Grid\Selectable\BrowserBtn()); |
91 | 91 | }); |
92 | 92 | |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | $hide = $hide ? 'hide' : ''; |
99 | 99 | $key = $this->key; |
100 | 100 | |
101 | - $this->column('__remove__', ' ')->display(function () use ($hide, $key) { |
|
101 | + $this->column('__remove__', ' ')->display(function() use ($hide, $key) { |
|
102 | 102 | return <<<BTN |
103 | 103 | <a href="javascript:void(0);" class="grid-row-remove {$hide}" data-key="{$this->getAttribute($key)}"> |
104 | 104 | <i class="fa fa-trash"></i> |
@@ -251,7 +251,7 @@ discard block |
||
251 | 251 | return $ret; |
252 | 252 | } |
253 | 253 | |
254 | - collect(explode(',', $id))->filter()->each(function ($id) { |
|
254 | + collect(explode(',', $id))->filter()->each(function($id) { |
|
255 | 255 | $builder = $this->model()->newQuery(); |
256 | 256 | |
257 | 257 | if ($this->isSoftDeletes) { |
@@ -304,9 +304,9 @@ discard block |
||
304 | 304 | |
305 | 305 | $data = $model->toArray(); |
306 | 306 | |
307 | - $this->fields()->filter(function ($field) { |
|
307 | + $this->fields()->filter(function($field) { |
|
308 | 308 | return $field instanceof Field\File; |
309 | - })->each(function (Field\File $file) use ($data) { |
|
309 | + })->each(function(Field\File $file) use ($data) { |
|
310 | 310 | $file->setOriginal($data); |
311 | 311 | |
312 | 312 | $file->destroy(); |
@@ -331,7 +331,7 @@ discard block |
||
331 | 331 | return $response; |
332 | 332 | } |
333 | 333 | |
334 | - DB::transaction(function () { |
|
334 | + DB::transaction(function() { |
|
335 | 335 | $inserts = $this->prepareInsert($this->updates); |
336 | 336 | |
337 | 337 | foreach ($inserts as $column => $value) { |
@@ -533,7 +533,7 @@ discard block |
||
533 | 533 | return $response; |
534 | 534 | } |
535 | 535 | |
536 | - DB::transaction(function () { |
|
536 | + DB::transaction(function() { |
|
537 | 537 | $updates = $this->prepareUpdate($this->updates); |
538 | 538 | |
539 | 539 | foreach ($updates as $column => $value) { |
@@ -985,7 +985,7 @@ discard block |
||
985 | 985 | protected function getFieldByColumn($column) |
986 | 986 | { |
987 | 987 | return $this->fields()->first( |
988 | - function (Field $field) use ($column) { |
|
988 | + function(Field $field) use ($column) { |
|
989 | 989 | if (is_array($field->column())) { |
990 | 990 | return in_array($column, $field->column()); |
991 | 991 | } |
@@ -1004,7 +1004,7 @@ discard block |
||
1004 | 1004 | { |
1005 | 1005 | $values = $this->model->toArray(); |
1006 | 1006 | |
1007 | - $this->fields()->each(function (Field $field) use ($values) { |
|
1007 | + $this->fields()->each(function(Field $field) use ($values) { |
|
1008 | 1008 | $field->setOriginal($values); |
1009 | 1009 | }); |
1010 | 1010 | } |
@@ -1032,7 +1032,7 @@ discard block |
||
1032 | 1032 | |
1033 | 1033 | $data = $this->model->toArray(); |
1034 | 1034 | |
1035 | - $this->fields()->each(function (Field $field) use ($data) { |
|
1035 | + $this->fields()->each(function(Field $field) use ($data) { |
|
1036 | 1036 | if (!in_array($field->column(), $this->ignored, true)) { |
1037 | 1037 | $field->fill($data); |
1038 | 1038 | } |
@@ -1162,7 +1162,7 @@ discard block |
||
1162 | 1162 | */ |
1163 | 1163 | public function setWidth($fieldWidth = 8, $labelWidth = 2): self |
1164 | 1164 | { |
1165 | - $this->fields()->each(function ($field) use ($fieldWidth, $labelWidth) { |
|
1165 | + $this->fields()->each(function($field) use ($fieldWidth, $labelWidth) { |
|
1166 | 1166 | /* @var Field $field */ |
1167 | 1167 | $field->setWidth($fieldWidth, $labelWidth); |
1168 | 1168 | }); |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | { |
53 | 53 | return collect(Arr::dot($from)) |
54 | 54 | ->keys() |
55 | - ->reject(function ($key) use ($to) { |
|
55 | + ->reject(function($key) use ($to) { |
|
56 | 56 | return Arr::has($to, $key); |
57 | 57 | }); |
58 | 58 | } |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | $this->line(''); |
67 | 67 | $this->comment("{$title}:"); |
68 | 68 | |
69 | - $diff->each(function ($key) use ($error) { |
|
69 | + $diff->each(function($key) use ($error) { |
|
70 | 70 | if ($error) { |
71 | 71 | $this->error(" {$key}"); |
72 | 72 | } else { |
@@ -48,7 +48,7 @@ |
||
48 | 48 | $this->value = json_encode($this->value, JSON_PRETTY_PRINT); |
49 | 49 | } |
50 | 50 | |
51 | - $this->mountPicker(function ($btn) { |
|
51 | + $this->mountPicker(function($btn) { |
|
52 | 52 | $this->addPickBtn($btn); |
53 | 53 | }); |
54 | 54 |
@@ -125,7 +125,7 @@ |
||
125 | 125 | $value = explode($this->separator, $value); |
126 | 126 | } |
127 | 127 | |
128 | - return collect(Arr::wrap($value))->map(function ($item) use ($field) { |
|
128 | + return collect(Arr::wrap($value))->map(function($item) use ($field) { |
|
129 | 129 | return [ |
130 | 130 | 'url' => $this->field->objectUrl($item), |
131 | 131 | 'value' => $item, |