@@ -108,7 +108,7 @@ |
||
108 | 108 | if (empty($this->ackUrl)) { |
109 | 109 | throw new Exception('Invalid filepond ack URL. At least set default api URL in admin config file.'); |
110 | 110 | } |
111 | - $this->ackUrl = rtrim($this->ackUrl, '/') . '/ack'; |
|
111 | + $this->ackUrl = rtrim($this->ackUrl, '/').'/ack'; |
|
112 | 112 | } |
113 | 113 | |
114 | 114 | $this->dir($dir); |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | $this->rules('nullable'); |
78 | 78 | } |
79 | 79 | |
80 | - $this->rules('in:' . implode(',', array_keys($this->options))); |
|
80 | + $this->rules('in:'.implode(',', array_keys($this->options))); |
|
81 | 81 | } |
82 | 82 | |
83 | 83 | return $this; |
@@ -241,7 +241,7 @@ discard block |
||
241 | 241 | throw new \InvalidArgumentException("[$model] must be a valid model class"); |
242 | 242 | } |
243 | 243 | |
244 | - $this->options = function ($value) use ($model, $idField, $textField) { |
|
244 | + $this->options = function($value) use ($model, $idField, $textField) { |
|
245 | 245 | if (empty($value)) { |
246 | 246 | return []; |
247 | 247 | } |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | return $content |
88 | 88 | ->title($this->title()) |
89 | 89 | ->description($this->description['edit'] ?? trans('admin.edit')) |
90 | - ->row(function (Row $row) use (&$id) { |
|
90 | + ->row(function(Row $row) use (&$id) { |
|
91 | 91 | $row->column(2, ''); |
92 | 92 | $row->column(8, $this->form()->edit($id)); |
93 | 93 | }); |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | return $content |
106 | 106 | ->title($this->title()) |
107 | 107 | ->description($this->description['create'] ?? trans('admin.create')) |
108 | - ->row(function (Row $row) { |
|
108 | + ->row(function(Row $row) { |
|
109 | 109 | $row->column(2, ''); |
110 | 110 | $row->column(8, $this->form()); |
111 | 111 | }); |
@@ -35,8 +35,8 @@ |
||
35 | 35 | $tok = $this->tokenizeValue($value); |
36 | 36 | |
37 | 37 | $input[$this->column()] = |
38 | - str_pad($tok[0], 4, '0', STR_PAD_LEFT) . |
|
39 | - str_pad($tok[1], 2, '0', STR_PAD_LEFT) . |
|
38 | + str_pad($tok[0], 4, '0', STR_PAD_LEFT). |
|
39 | + str_pad($tok[1], 2, '0', STR_PAD_LEFT). |
|
40 | 40 | str_pad($tok[2], 2, '0', STR_PAD_LEFT); |
41 | 41 | } catch (Exception $e) { |
42 | 42 |
@@ -59,7 +59,9 @@ discard block |
||
59 | 59 | */ |
60 | 60 | public function prepare($value) |
61 | 61 | { |
62 | - if (empty($value)) return null; |
|
62 | + if (empty($value)) { |
|
63 | + return null; |
|
64 | + } |
|
63 | 65 | |
64 | 66 | $tok = $this->tokenizeValue($value); |
65 | 67 | |
@@ -79,7 +81,9 @@ discard block |
||
79 | 81 | |
80 | 82 | $tok = preg_split('/(\-|\/)/', $value, 3); |
81 | 83 | |
82 | - if (count($tok) < 3) throw new Exception('Invalid JalaliDate!'); |
|
84 | + if (count($tok) < 3) { |
|
85 | + throw new Exception('Invalid JalaliDate!'); |
|
86 | + } |
|
83 | 87 | } |
84 | 88 | |
85 | 89 | // Test is able to create jalalian |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | |
30 | 30 | $grid = new Grid(new $permissionModel()); |
31 | 31 | |
32 | - $grid->filter(function (Filter $filter) { |
|
32 | + $grid->filter(function(Filter $filter) { |
|
33 | 33 | $filter->like('slug', trans('admin.slug')); |
34 | 34 | $filter->like('name', trans('admin.name')); |
35 | 35 | $filter->like('http_path', trans('admin.route')); |
@@ -39,8 +39,8 @@ discard block |
||
39 | 39 | $grid->column('slug', trans('admin.slug')); |
40 | 40 | $grid->column('name', trans('admin.name')); |
41 | 41 | |
42 | - $grid->column('http_path', trans('admin.route'))->display(function ($path) { |
|
43 | - return collect(explode("\n", $path))->map(function ($path) { |
|
42 | + $grid->column('http_path', trans('admin.route'))->display(function($path) { |
|
43 | + return collect(explode("\n", $path))->map(function($path) { |
|
44 | 44 | $method = $this->http_method ?: ['ANY']; |
45 | 45 | |
46 | 46 | if (Str::contains($path, ':')) { |
@@ -48,9 +48,9 @@ discard block |
||
48 | 48 | $method = explode(',', $method); |
49 | 49 | } |
50 | 50 | |
51 | - $method = collect($method)->map(function ($name) { |
|
51 | + $method = collect($method)->map(function($name) { |
|
52 | 52 | return strtoupper($name); |
53 | - })->map(function ($name) { |
|
53 | + })->map(function($name) { |
|
54 | 54 | return "<span class='label label-primary'>{$name}</span>"; |
55 | 55 | })->implode(' '); |
56 | 56 | |
@@ -65,8 +65,8 @@ discard block |
||
65 | 65 | $grid->column('created_at', trans('admin.created_at')); |
66 | 66 | $grid->column('updated_at', trans('admin.updated_at')); |
67 | 67 | |
68 | - $grid->tools(function (Grid\Tools $tools) { |
|
69 | - $tools->batch(function (Grid\Tools\BatchActions $actions) { |
|
68 | + $grid->tools(function(Grid\Tools $tools) { |
|
69 | + $tools->batch(function(Grid\Tools\BatchActions $actions) { |
|
70 | 70 | $actions->disableDelete(); |
71 | 71 | }); |
72 | 72 | }); |
@@ -91,8 +91,8 @@ discard block |
||
91 | 91 | $show->field('slug', trans('admin.slug')); |
92 | 92 | $show->field('name', trans('admin.name')); |
93 | 93 | |
94 | - $show->field('http_path', trans('admin.route'))->unescape()->as(function ($path) { |
|
95 | - return collect(explode("\r\n", $path))->map(function ($path) { |
|
94 | + $show->field('http_path', trans('admin.route'))->unescape()->as(function($path) { |
|
95 | + return collect(explode("\r\n", $path))->map(function($path) { |
|
96 | 96 | $method = $this->http_method ?: ['ANY']; |
97 | 97 | |
98 | 98 | if (Str::contains($path, ':')) { |
@@ -100,9 +100,9 @@ discard block |
||
100 | 100 | $method = explode(',', $method); |
101 | 101 | } |
102 | 102 | |
103 | - $method = collect($method)->map(function ($name) { |
|
103 | + $method = collect($method)->map(function($name) { |
|
104 | 104 | return strtoupper($name); |
105 | - })->map(function ($name) { |
|
105 | + })->map(function($name) { |
|
106 | 106 | return "<span class='label label-primary'>{$name}</span>"; |
107 | 107 | })->implode(' '); |
108 | 108 |
@@ -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-regular {$branch['icon']}'></i> <strong>{$branch['title']}</strong>"; |
80 | 80 | |
81 | 81 | if (!isset($branch['children'])) { |
@@ -14,7 +14,7 @@ discard block |
||
14 | 14 | |
15 | 15 | protected function getAllPermissionsCacheKey(): string |
16 | 16 | { |
17 | - return $this->getGeneralCacheKey() . '.all-permissions'; |
|
17 | + return $this->getGeneralCacheKey().'.all-permissions'; |
|
18 | 18 | } |
19 | 19 | |
20 | 20 | /** |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | */ |
25 | 25 | public function allPermissions(): Collection |
26 | 26 | { |
27 | - return Cache::remember($this->getAllPermissionsCacheKey(), now()->addHour(), function () { |
|
27 | + return Cache::remember($this->getAllPermissionsCacheKey(), now()->addHour(), function() { |
|
28 | 28 | return $this->roles()->with('permissions')->get()->pluck('permissions')->flatten()->merge($this->permissions); |
29 | 29 | }); |
30 | 30 | } |
@@ -144,7 +144,7 @@ discard block |
||
144 | 144 | */ |
145 | 145 | protected static function bootHasPermissions() |
146 | 146 | { |
147 | - static::deleting(function ($model) { |
|
147 | + static::deleting(function($model) { |
|
148 | 148 | $model->roles()->detach(); |
149 | 149 | |
150 | 150 | $model->permissions()->detach(); |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | $connection = config('admin.database.connection') ?: config('database.default'); |
69 | 69 | $orderColumn = DB::connection($connection)->getQueryGrammar()->wrap($this->orderColumn); |
70 | 70 | |
71 | - $byOrder = 'ROOT ASC,' . $orderColumn; |
|
71 | + $byOrder = 'ROOT ASC,'.$orderColumn; |
|
72 | 72 | |
73 | 73 | $query = static::query(); |
74 | 74 | |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | return Cache::remember( |
80 | 80 | 'laravel-admin.menu.all-nodes', |
81 | 81 | now()->addHour(), |
82 | - fn () => $query->selectRaw('*, ' . $orderColumn . ' ROOT')->orderByRaw($byOrder)->get()->toArray() |
|
82 | + fn () => $query->selectRaw('*, '.$orderColumn.' ROOT')->orderByRaw($byOrder)->get()->toArray() |
|
83 | 83 | ); |
84 | 84 | } |
85 | 85 | |
@@ -102,11 +102,11 @@ discard block |
||
102 | 102 | { |
103 | 103 | static::treeBoot(); |
104 | 104 | |
105 | - static::deleting(function ($model) { |
|
105 | + static::deleting(function($model) { |
|
106 | 106 | $model->roles()->detach(); |
107 | 107 | }); |
108 | 108 | |
109 | - static::saved(function ($model) { |
|
109 | + static::saved(function($model) { |
|
110 | 110 | Cache::forget('laravel-admin.menu.all-nodes'); |
111 | 111 | }); |
112 | 112 | } |
@@ -192,7 +192,7 @@ discard block |
||
192 | 192 | */ |
193 | 193 | public function using(array $values, $default = null) |
194 | 194 | { |
195 | - return $this->as(function ($value) use ($values, $default) { |
|
195 | + return $this->as(function($value) use ($values, $default) { |
|
196 | 196 | if (is_null($value)) { |
197 | 197 | return $default; |
198 | 198 | } |
@@ -212,8 +212,8 @@ discard block |
||
212 | 212 | */ |
213 | 213 | public function image($server = '', $width = 200, $height = 200) |
214 | 214 | { |
215 | - return $this->unescape()->as(function ($images) use ($server, $width, $height) { |
|
216 | - return collect($images)->map(function ($path) use ($server, $width, $height) { |
|
215 | + return $this->unescape()->as(function($images) use ($server, $width, $height) { |
|
216 | + return collect($images)->map(function($path) use ($server, $width, $height) { |
|
217 | 217 | if (empty($path)) { |
218 | 218 | return ''; |
219 | 219 | } |
@@ -248,8 +248,8 @@ discard block |
||
248 | 248 | */ |
249 | 249 | public function carousel($width = 300, $height = 200, $server = '') |
250 | 250 | { |
251 | - return $this->unescape()->as(function ($images) use ($server, $width, $height) { |
|
252 | - $items = collect($images)->map(function ($path) use ($server, $width, $height) { |
|
251 | + return $this->unescape()->as(function($images) use ($server, $width, $height) { |
|
252 | + $items = collect($images)->map(function($path) use ($server, $width, $height) { |
|
253 | 253 | if (empty($path)) { |
254 | 254 | return ''; |
255 | 255 | } |
@@ -289,7 +289,7 @@ discard block |
||
289 | 289 | { |
290 | 290 | $field = $this; |
291 | 291 | |
292 | - return $this->unescape()->as(function ($path) use ($server, $download, $field) { |
|
292 | + return $this->unescape()->as(function($path) use ($server, $download, $field) { |
|
293 | 293 | $name = basename($path); |
294 | 294 | |
295 | 295 | $field->border = false; |
@@ -343,7 +343,7 @@ discard block |
||
343 | 343 | */ |
344 | 344 | public function link($href = '', $target = '_blank') |
345 | 345 | { |
346 | - return $this->unescape()->as(function ($link) use ($href, $target) { |
|
346 | + return $this->unescape()->as(function($link) use ($href, $target) { |
|
347 | 347 | $href = $href ?: $link; |
348 | 348 | |
349 | 349 | return "<a href='$href' target='{$target}'>{$link}</a>"; |
@@ -360,7 +360,7 @@ discard block |
||
360 | 360 | */ |
361 | 361 | public function bool(array $map = [], $default = false) |
362 | 362 | { |
363 | - return $this->unescape()->as(function ($value) use ($map, $default) { |
|
363 | + return $this->unescape()->as(function($value) use ($map, $default) { |
|
364 | 364 | $bool = empty($map) ? boolval($value) : Arr::get($map, $value, $default); |
365 | 365 | |
366 | 366 | return $bool ? '<i class="fa-regular fa-check text-green"></i>' : '<i class="fa-regular fa-close text-red"></i>'; |
@@ -376,12 +376,12 @@ discard block |
||
376 | 376 | */ |
377 | 377 | public function label($style = 'success') |
378 | 378 | { |
379 | - return $this->unescape()->as(function ($value) use ($style) { |
|
379 | + return $this->unescape()->as(function($value) use ($style) { |
|
380 | 380 | if ($value instanceof Arrayable) { |
381 | 381 | $value = $value->toArray(); |
382 | 382 | } |
383 | 383 | |
384 | - return collect((array) $value)->map(function ($name) use ($style) { |
|
384 | + return collect((array) $value)->map(function($name) use ($style) { |
|
385 | 385 | return "<span class='label label-{$style}'>$name</span>"; |
386 | 386 | })->implode(' '); |
387 | 387 | }); |
@@ -396,12 +396,12 @@ discard block |
||
396 | 396 | */ |
397 | 397 | public function badge($style = 'blue') |
398 | 398 | { |
399 | - return $this->unescape()->as(function ($value) use ($style) { |
|
399 | + return $this->unescape()->as(function($value) use ($style) { |
|
400 | 400 | if ($value instanceof Arrayable) { |
401 | 401 | $value = $value->toArray(); |
402 | 402 | } |
403 | 403 | |
404 | - return collect((array) $value)->map(function ($name) use ($style) { |
|
404 | + return collect((array) $value)->map(function($name) use ($style) { |
|
405 | 405 | return "<span class='badge bg-{$style}'>$name</span>"; |
406 | 406 | })->implode(' '); |
407 | 407 | }); |
@@ -417,7 +417,7 @@ discard block |
||
417 | 417 | */ |
418 | 418 | public function jalali($format = '%Y-%m-%d H:i') |
419 | 419 | { |
420 | - return $this->unescape()->as(fn ($v) => "<span dir='ltr'>" . \Morilog\Jalali\Jalalian::forge($v)->format($format) . "</span>"); |
|
420 | + return $this->unescape()->as(fn ($v) => "<span dir='ltr'>".\Morilog\Jalali\Jalalian::forge($v)->format($format)."</span>"); |
|
421 | 421 | } |
422 | 422 | |
423 | 423 | /** |
@@ -431,7 +431,7 @@ discard block |
||
431 | 431 | */ |
432 | 432 | public function number($decimals = 0, $decimal_seperator = '.', $thousands_seperator = ',') |
433 | 433 | { |
434 | - return $this->unescape()->as(function ($value) use ($decimals, $decimal_seperator, $thousands_seperator) { |
|
434 | + return $this->unescape()->as(function($value) use ($decimals, $decimal_seperator, $thousands_seperator) { |
|
435 | 435 | return number_format($value, $decimals, $decimal_seperator, $thousands_seperator); |
436 | 436 | }); |
437 | 437 | } |
@@ -445,7 +445,7 @@ discard block |
||
445 | 445 | { |
446 | 446 | $field = $this; |
447 | 447 | |
448 | - return $this->unescape()->as(function ($value) use ($field) { |
|
448 | + return $this->unescape()->as(function($value) use ($field) { |
|
449 | 449 | if (is_string($value)) { |
450 | 450 | $content = json_decode($value, true); |
451 | 451 | } else { |
@@ -469,7 +469,7 @@ discard block |
||
469 | 469 | */ |
470 | 470 | public function filesize() |
471 | 471 | { |
472 | - return $this->as(function ($value) { |
|
472 | + return $this->as(function($value) { |
|
473 | 473 | return file_size($value); |
474 | 474 | }); |
475 | 475 | } |
@@ -627,7 +627,7 @@ discard block |
||
627 | 627 | |
628 | 628 | $field = $this; |
629 | 629 | |
630 | - return $this->as(function ($value) use ($extend, $field, $arguments) { |
|
630 | + return $this->as(function($value) use ($extend, $field, $arguments) { |
|
631 | 631 | if (!$extend->border) { |
632 | 632 | $field->border = false; |
633 | 633 | } |
@@ -686,7 +686,7 @@ discard block |
||
686 | 686 | public function render() |
687 | 687 | { |
688 | 688 | if ($this->showAs->isNotEmpty()) { |
689 | - $this->showAs->each(function ($callable) { |
|
689 | + $this->showAs->each(function($callable) { |
|
690 | 690 | $this->value = $callable->call( |
691 | 691 | $this->parent->getModel(), |
692 | 692 | $this->value |