@@ -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 | |
@@ -71,10 +71,10 @@ discard block |
||
71 | 71 | { |
72 | 72 | $menuModel = config('admin.database.menu_model'); |
73 | 73 | |
74 | - return $menuModel::tree(function (Tree $tree) { |
|
74 | + return $menuModel::tree(function(Tree $tree) { |
|
75 | 75 | $tree->disableCreate(); |
76 | 76 | |
77 | - $tree->branch(function ($branch) { |
|
77 | + $tree->branch(function($branch) { |
|
78 | 78 | $payload = "<i class='fa {$branch['icon']}'></i> <strong>{$branch['title']}</strong>"; |
79 | 79 | |
80 | 80 | if (!isset($branch['children'])) { |
@@ -112,7 +112,7 @@ |
||
112 | 112 | protected function startColumn() |
113 | 113 | { |
114 | 114 | // get class name using width array |
115 | - $classnName = collect($this->width)->map(function ($value, $key) { |
|
115 | + $classnName = collect($this->width)->map(function($value, $key) { |
|
116 | 116 | return "col-$key-$value"; |
117 | 117 | })->implode(' '); |
118 | 118 |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | $all = $fields->toArray(); |
71 | 71 | |
72 | 72 | foreach ($this->form->rows as $row) { |
73 | - $rowFields = array_map(function ($field) { |
|
73 | + $rowFields = array_map(function($field) { |
|
74 | 74 | return $field['element']; |
75 | 75 | }, $row->getFields()); |
76 | 76 | |
@@ -104,7 +104,7 @@ discard block |
||
104 | 104 | public function getTabs() |
105 | 105 | { |
106 | 106 | // If there is no active tab, then active the first. |
107 | - if ($this->tabs->filter(function ($tab) { |
|
107 | + if ($this->tabs->filter(function($tab) { |
|
108 | 108 | return $tab['active']; |
109 | 109 | })->isEmpty()) { |
110 | 110 | $first = $this->tabs->first(); |
@@ -48,7 +48,7 @@ |
||
48 | 48 | */ |
49 | 49 | public function removeFields($fields) |
50 | 50 | { |
51 | - $this->fields = $this->fields->reject(function (Field $field) use ($fields) { |
|
51 | + $this->fields = $this->fields->reject(function(Field $field) use ($fields) { |
|
52 | 52 | return in_array($field->column(), $fields); |
53 | 53 | }); |
54 | 54 | } |
@@ -10,7 +10,7 @@ |
||
10 | 10 | |
11 | 11 | public function render() |
12 | 12 | { |
13 | - $this->options = collect(DateTimeZone::listIdentifiers(DateTimeZone::ALL))->mapWithKeys(function ($timezone) { |
|
13 | + $this->options = collect(DateTimeZone::listIdentifiers(DateTimeZone::ALL))->mapWithKeys(function($timezone) { |
|
14 | 14 | return [$timezone => $timezone]; |
15 | 15 | })->toArray(); |
16 | 16 |
@@ -218,7 +218,7 @@ |
||
218 | 218 | throw new \InvalidArgumentException("[$model] must be a valid model class"); |
219 | 219 | } |
220 | 220 | |
221 | - $this->options = function ($value) use ($model, $idField, $textField) { |
|
221 | + $this->options = function($value) use ($model, $idField, $textField) { |
|
222 | 222 | if (empty($value)) { |
223 | 223 | return []; |
224 | 224 | } |
@@ -687,7 +687,7 @@ |
||
687 | 687 | } |
688 | 688 | |
689 | 689 | /* Build row elements */ |
690 | - $template = array_reduce($fields, function ($all, $field) { |
|
690 | + $template = array_reduce($fields, function($all, $field) { |
|
691 | 691 | $all .= "<td>{$field}</td>"; |
692 | 692 | |
693 | 693 | return $all; |
@@ -33,7 +33,7 @@ |
||
33 | 33 | |
34 | 34 | $this->callInterventionMethods($image->getRealPath()); |
35 | 35 | |
36 | - return tap($this->upload($image), function () { |
|
36 | + return tap($this->upload($image), function() { |
|
37 | 37 | $this->name = null; |
38 | 38 | }); |
39 | 39 | } |
@@ -172,7 +172,7 @@ |
||
172 | 172 | { |
173 | 173 | $this->name = $this->getStoreName($file); |
174 | 174 | |
175 | - return tap($this->upload($file), function () { |
|
175 | + return tap($this->upload($file), function() { |
|
176 | 176 | $this->name = null; |
177 | 177 | }); |
178 | 178 | } |