@@ -54,7 +54,7 @@ |
||
| 54 | 54 | |
| 55 | 55 | $this->value = array_get($inputs, $this->column); |
| 56 | 56 | |
| 57 | - $value = array_filter($this->value, function ($val) { |
|
| 57 | + $value = array_filter($this->value, function($val) { |
|
| 58 | 58 | return $val !== ''; |
| 59 | 59 | }); |
| 60 | 60 | |
@@ -158,7 +158,7 @@ |
||
| 158 | 158 | |
| 159 | 159 | list($relation, $args[0]) = explode('.', $this->column); |
| 160 | 160 | |
| 161 | - return ['whereHas' => [$relation, function ($relation) use ($args) { |
|
| 161 | + return ['whereHas' => [$relation, function($relation) use ($args) { |
|
| 162 | 162 | call_user_func_array([$relation, $this->query], $args); |
| 163 | 163 | }]]; |
| 164 | 164 | } |
@@ -134,7 +134,7 @@ |
||
| 134 | 134 | public function style($style) |
| 135 | 135 | { |
| 136 | 136 | if (is_array($style)) { |
| 137 | - $style = implode('', array_map(function ($key, $val) { |
|
| 137 | + $style = implode('', array_map(function($key, $val) { |
|
| 138 | 138 | return "$key:$val"; |
| 139 | 139 | }, array_keys($style), array_values($style))); |
| 140 | 140 | } |
@@ -46,7 +46,7 @@ |
||
| 46 | 46 | */ |
| 47 | 47 | public function conditions() |
| 48 | 48 | { |
| 49 | - $inputs = array_filter(Input::all(), function ($input) { |
|
| 49 | + $inputs = array_filter(Input::all(), function($input) { |
|
| 50 | 50 | return $input !== ''; |
| 51 | 51 | }); |
| 52 | 52 | |
@@ -64,7 +64,7 @@ |
||
| 64 | 64 | return $this->style([$styles]); |
| 65 | 65 | } |
| 66 | 66 | |
| 67 | - $styles = array_map(function ($style) { |
|
| 67 | + $styles = array_map(function($style) { |
|
| 68 | 68 | return 'box-'.$style; |
| 69 | 69 | }, $styles); |
| 70 | 70 | |
@@ -84,7 +84,7 @@ |
||
| 84 | 84 | { |
| 85 | 85 | static::$branchOrder = array_flip(array_flatten($order)); |
| 86 | 86 | |
| 87 | - static::$branchOrder = array_map(function ($item) { |
|
| 87 | + static::$branchOrder = array_map(function($item) { |
|
| 88 | 88 | return ++$item; |
| 89 | 89 | }, static::$branchOrder); |
| 90 | 90 | } |
@@ -21,7 +21,7 @@ discard block |
||
| 21 | 21 | */ |
| 22 | 22 | public function index() |
| 23 | 23 | { |
| 24 | - return Admin::content(function (Content $content) { |
|
| 24 | + return Admin::content(function(Content $content) { |
|
| 25 | 25 | $content->header(trans('admin::lang.administrator')); |
| 26 | 26 | $content->description(trans('admin::lang.list')); |
| 27 | 27 | $content->body($this->grid()->render()); |
@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | */ |
| 38 | 38 | public function edit($id) |
| 39 | 39 | { |
| 40 | - return Admin::content(function (Content $content) use ($id) { |
|
| 40 | + return Admin::content(function(Content $content) use ($id) { |
|
| 41 | 41 | $content->header(trans('admin::lang.administrator')); |
| 42 | 42 | $content->description(trans('admin::lang.edit')); |
| 43 | 43 | $content->body($this->form()->edit($id)); |
@@ -51,7 +51,7 @@ discard block |
||
| 51 | 51 | */ |
| 52 | 52 | public function create() |
| 53 | 53 | { |
| 54 | - return Admin::content(function (Content $content) { |
|
| 54 | + return Admin::content(function(Content $content) { |
|
| 55 | 55 | $content->header(trans('admin::lang.administrator')); |
| 56 | 56 | $content->description(trans('admin::lang.create')); |
| 57 | 57 | $content->body($this->form()); |
@@ -65,13 +65,13 @@ discard block |
||
| 65 | 65 | */ |
| 66 | 66 | protected function grid() |
| 67 | 67 | { |
| 68 | - return Admin::grid(Administrator::class, function (Grid $grid) { |
|
| 68 | + return Admin::grid(Administrator::class, function(Grid $grid) { |
|
| 69 | 69 | $grid->id('ID')->sortable(); |
| 70 | 70 | $grid->username(trans('admin::lang.username')); |
| 71 | 71 | $grid->name(trans('admin::lang.name')); |
| 72 | 72 | |
| 73 | - $grid->roles(trans('admin::lang.roles'))->value(function ($roles) { |
|
| 74 | - $roles = array_map(function ($role) { |
|
| 73 | + $grid->roles(trans('admin::lang.roles'))->value(function($roles) { |
|
| 74 | + $roles = array_map(function($role) { |
|
| 75 | 75 | return "<span class='label label-success'>{$role['name']}</span>"; |
| 76 | 76 | }, $roles); |
| 77 | 77 | |
@@ -81,7 +81,7 @@ discard block |
||
| 81 | 81 | $grid->created_at(trans('admin::lang.created_at')); |
| 82 | 82 | $grid->updated_at(trans('admin::lang.updated_at')); |
| 83 | 83 | |
| 84 | - $grid->rows(function ($row) { |
|
| 84 | + $grid->rows(function($row) { |
|
| 85 | 85 | if ($row->id == 1) { |
| 86 | 86 | $row->actions('edit'); |
| 87 | 87 | } |
@@ -96,7 +96,7 @@ discard block |
||
| 96 | 96 | */ |
| 97 | 97 | public function form() |
| 98 | 98 | { |
| 99 | - return Admin::form(Administrator::class, function (Form $form) { |
|
| 99 | + return Admin::form(Administrator::class, function(Form $form) { |
|
| 100 | 100 | $form->display('id', 'ID'); |
| 101 | 101 | |
| 102 | 102 | $form->text('username', trans('admin::lang.username'))->rules('required'); |
@@ -108,7 +108,7 @@ discard block |
||
| 108 | 108 | $form->display('created_at', trans('admin::lang.created_at')); |
| 109 | 109 | $form->display('updated_at', trans('admin::lang.updated_at')); |
| 110 | 110 | |
| 111 | - $form->saving(function (Form $form) { |
|
| 111 | + $form->saving(function(Form $form) { |
|
| 112 | 112 | if ($form->password && $form->model()->password != $form->password) { |
| 113 | 113 | $form->password = bcrypt($form->password); |
| 114 | 114 | } |
@@ -21,7 +21,7 @@ discard block |
||
| 21 | 21 | */ |
| 22 | 22 | public function index() |
| 23 | 23 | { |
| 24 | - return Admin::content(function (Content $content) { |
|
| 24 | + return Admin::content(function(Content $content) { |
|
| 25 | 25 | $content->header(trans('admin::lang.roles')); |
| 26 | 26 | $content->description(trans('admin::lang.list')); |
| 27 | 27 | $content->body($this->grid()->render()); |
@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | */ |
| 38 | 38 | public function edit($id) |
| 39 | 39 | { |
| 40 | - return Admin::content(function (Content $content) use ($id) { |
|
| 40 | + return Admin::content(function(Content $content) use ($id) { |
|
| 41 | 41 | $content->header(trans('admin::lang.roles')); |
| 42 | 42 | $content->description(trans('admin::lang.edit')); |
| 43 | 43 | $content->body($this->form()->edit($id)); |
@@ -51,7 +51,7 @@ discard block |
||
| 51 | 51 | */ |
| 52 | 52 | public function create() |
| 53 | 53 | { |
| 54 | - return Admin::content(function (Content $content) { |
|
| 54 | + return Admin::content(function(Content $content) { |
|
| 55 | 55 | $content->header(trans('admin::lang.roles')); |
| 56 | 56 | $content->description(trans('admin::lang.create')); |
| 57 | 57 | $content->body($this->form()); |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | */ |
| 66 | 66 | protected function grid() |
| 67 | 67 | { |
| 68 | - return Admin::grid(Role::class, function (Grid $grid) { |
|
| 68 | + return Admin::grid(Role::class, function(Grid $grid) { |
|
| 69 | 69 | $grid->id('ID')->sortable(); |
| 70 | 70 | $grid->slug(trans('admin::lang.slug')); |
| 71 | 71 | $grid->name(trans('admin::lang.name')); |
@@ -73,7 +73,7 @@ discard block |
||
| 73 | 73 | $grid->created_at(trans('admin::lang.created_at')); |
| 74 | 74 | $grid->updated_at(trans('admin::lang.updated_at')); |
| 75 | 75 | |
| 76 | - $grid->rows(function ($row) { |
|
| 76 | + $grid->rows(function($row) { |
|
| 77 | 77 | if ($row->slug == 'administrator') { |
| 78 | 78 | $row->actions('edit'); |
| 79 | 79 | } |
@@ -88,7 +88,7 @@ discard block |
||
| 88 | 88 | */ |
| 89 | 89 | public function form() |
| 90 | 90 | { |
| 91 | - return Admin::form(Role::class, function (Form $form) { |
|
| 91 | + return Admin::form(Role::class, function(Form $form) { |
|
| 92 | 92 | $form->display('id', 'ID'); |
| 93 | 93 | |
| 94 | 94 | $form->text('slug', trans('admin::lang.slug'))->rules('required'); |
@@ -231,9 +231,9 @@ discard block |
||
| 231 | 231 | $data = $this->model->with($this->getRelations()) |
| 232 | 232 | ->findOrFail($id)->toArray(); |
| 233 | 233 | |
| 234 | - $this->builder->fields()->filter(function ($field) { |
|
| 234 | + $this->builder->fields()->filter(function($field) { |
|
| 235 | 235 | return $field instanceof Field\File; |
| 236 | - })->each(function (File $file) use ($data) { |
|
| 236 | + })->each(function(File $file) use ($data) { |
|
| 237 | 237 | $file->setOriginal($data); |
| 238 | 238 | |
| 239 | 239 | $file->destroy(); |
@@ -255,7 +255,7 @@ discard block |
||
| 255 | 255 | |
| 256 | 256 | $this->prepare($data, $this->saving); |
| 257 | 257 | |
| 258 | - DB::transaction(function () { |
|
| 258 | + DB::transaction(function() { |
|
| 259 | 259 | $inserts = $this->prepareInsert($this->updates); |
| 260 | 260 | |
| 261 | 261 | foreach ($inserts as $column => $value) { |
@@ -293,7 +293,7 @@ discard block |
||
| 293 | 293 | |
| 294 | 294 | $updates = array_except($this->inputs, array_keys($this->relations)); |
| 295 | 295 | |
| 296 | - $this->updates = array_filter($updates, function ($val) { |
|
| 296 | + $this->updates = array_filter($updates, function($val) { |
|
| 297 | 297 | return !is_null($val); |
| 298 | 298 | }); |
| 299 | 299 | } |
@@ -390,7 +390,7 @@ discard block |
||
| 390 | 390 | |
| 391 | 391 | $this->prepare($data, $this->saving); |
| 392 | 392 | |
| 393 | - DB::transaction(function () { |
|
| 393 | + DB::transaction(function() { |
|
| 394 | 394 | $updates = $this->prepareUpdate($this->updates); |
| 395 | 395 | |
| 396 | 396 | foreach ($updates as $column => $value) { |
@@ -590,7 +590,7 @@ discard block |
||
| 590 | 590 | protected function getFieldByColumn($column) |
| 591 | 591 | { |
| 592 | 592 | return $this->builder->fields()->first( |
| 593 | - function ($index, Field $field) use ($column) { |
|
| 593 | + function($index, Field $field) use ($column) { |
|
| 594 | 594 | if (is_array($field->column())) { |
| 595 | 595 | return in_array($column, $field->column()); |
| 596 | 596 | } |
@@ -609,7 +609,7 @@ discard block |
||
| 609 | 609 | { |
| 610 | 610 | $values = $this->model->toArray(); |
| 611 | 611 | |
| 612 | - $this->builder->fields()->each(function (Field $field) use ($values) { |
|
| 612 | + $this->builder->fields()->each(function(Field $field) use ($values) { |
|
| 613 | 613 | $field->setOriginal($values); |
| 614 | 614 | }); |
| 615 | 615 | } |
@@ -629,7 +629,7 @@ discard block |
||
| 629 | 629 | |
| 630 | 630 | $data = $this->model->toArray(); |
| 631 | 631 | |
| 632 | - $this->builder->fields()->each(function (Field $field) use ($data) { |
|
| 632 | + $this->builder->fields()->each(function(Field $field) use ($data) { |
|
| 633 | 633 | $field->fill($data); |
| 634 | 634 | }); |
| 635 | 635 | } |