@@ -225,7 +225,7 @@ discard block |
||
225 | 225 | { |
226 | 226 | $inputs = array_dot(Input::all()); |
227 | 227 | |
228 | - $inputs = array_filter($inputs, function ($input) { |
|
228 | + $inputs = array_filter($inputs, function($input) { |
|
229 | 229 | return $input !== '' && !is_null($input); |
230 | 230 | }); |
231 | 231 | |
@@ -249,7 +249,7 @@ discard block |
||
249 | 249 | $conditions[] = $filter->condition($params); |
250 | 250 | } |
251 | 251 | |
252 | - return tap(array_filter($conditions), function ($conditions) { |
|
252 | + return tap(array_filter($conditions), function($conditions) { |
|
253 | 253 | if (!empty($conditions)) { |
254 | 254 | $this->expand(); |
255 | 255 | } |
@@ -267,9 +267,9 @@ discard block |
||
267 | 267 | return $inputs; |
268 | 268 | } |
269 | 269 | |
270 | - $inputs = collect($inputs)->filter(function ($input, $key) { |
|
270 | + $inputs = collect($inputs)->filter(function($input, $key) { |
|
271 | 271 | return starts_with($key, "{$this->name}_"); |
272 | - })->mapWithKeys(function ($val, $key) { |
|
272 | + })->mapWithKeys(function($val, $key) { |
|
273 | 273 | $key = str_replace("{$this->name}_", '', $key); |
274 | 274 | |
275 | 275 | return [$key => $val]; |
@@ -322,7 +322,7 @@ discard block |
||
322 | 322 | */ |
323 | 323 | public function scope($key, $label = '') |
324 | 324 | { |
325 | - return tap(new Scope($key, $label), function (Scope $scope) { |
|
325 | + return tap(new Scope($key, $label), function(Scope $scope) { |
|
326 | 326 | return $this->scopes->push($scope); |
327 | 327 | }); |
328 | 328 | } |
@@ -346,7 +346,7 @@ discard block |
||
346 | 346 | { |
347 | 347 | $key = request(Scope::QUERY_NAME); |
348 | 348 | |
349 | - return $this->scopes->first(function ($scope) use ($key) { |
|
349 | + return $this->scopes->first(function($scope) use ($key) { |
|
350 | 350 | return $scope->key == $key; |
351 | 351 | }); |
352 | 352 | } |
@@ -461,9 +461,9 @@ discard block |
||
461 | 461 | |
462 | 462 | $columns->push($pageKey); |
463 | 463 | |
464 | - $groupNames = collect($this->filters)->filter(function ($filter) { |
|
464 | + $groupNames = collect($this->filters)->filter(function($filter) { |
|
465 | 465 | return $filter instanceof Group; |
466 | - })->map(function (AbstractFilter $filter) { |
|
466 | + })->map(function(AbstractFilter $filter) { |
|
467 | 467 | return "{$filter->getId()}_group"; |
468 | 468 | }); |
469 | 469 |
@@ -172,7 +172,7 @@ discard block |
||
172 | 172 | */ |
173 | 173 | public function using(array $values, $default = null) |
174 | 174 | { |
175 | - return $this->as(function ($value) use ($values, $default) { |
|
175 | + return $this->as(function($value) use ($values, $default) { |
|
176 | 176 | if (is_null($value)) { |
177 | 177 | return $default; |
178 | 178 | } |
@@ -192,7 +192,7 @@ discard block |
||
192 | 192 | */ |
193 | 193 | public function image($server = '', $width = 200, $height = 200) |
194 | 194 | { |
195 | - return $this->as(function ($path) use ($server, $width, $height) { |
|
195 | + return $this->as(function($path) use ($server, $width, $height) { |
|
196 | 196 | |
197 | 197 | if (empty($path)) { |
198 | 198 | return ''; |
@@ -228,7 +228,7 @@ discard block |
||
228 | 228 | { |
229 | 229 | $field = $this; |
230 | 230 | |
231 | - return $this->as(function ($path) use ($server, $download, $field) { |
|
231 | + return $this->as(function($path) use ($server, $download, $field) { |
|
232 | 232 | $name = basename($path); |
233 | 233 | |
234 | 234 | $field->wrapped = false; |
@@ -276,7 +276,7 @@ discard block |
||
276 | 276 | */ |
277 | 277 | public function link($href = '', $target = '_blank') |
278 | 278 | { |
279 | - return $this->as(function ($link) use ($href, $target) { |
|
279 | + return $this->as(function($link) use ($href, $target) { |
|
280 | 280 | $href = $href ?: $link; |
281 | 281 | |
282 | 282 | return "<a href='$href' target='{$target}'>{$link}</a>"; |
@@ -292,12 +292,12 @@ discard block |
||
292 | 292 | */ |
293 | 293 | public function label($style = 'success') |
294 | 294 | { |
295 | - return $this->as(function ($value) use ($style) { |
|
295 | + return $this->as(function($value) use ($style) { |
|
296 | 296 | if ($value instanceof Arrayable) { |
297 | 297 | $value = $value->toArray(); |
298 | 298 | } |
299 | 299 | |
300 | - return collect((array) $value)->map(function ($name) use ($style) { |
|
300 | + return collect((array) $value)->map(function($name) use ($style) { |
|
301 | 301 | return "<span class='label label-{$style}'>$name</span>"; |
302 | 302 | })->implode(' '); |
303 | 303 | }); |
@@ -312,12 +312,12 @@ discard block |
||
312 | 312 | */ |
313 | 313 | public function badge($style = 'blue') |
314 | 314 | { |
315 | - return $this->as(function ($value) use ($style) { |
|
315 | + return $this->as(function($value) use ($style) { |
|
316 | 316 | if ($value instanceof Arrayable) { |
317 | 317 | $value = $value->toArray(); |
318 | 318 | } |
319 | 319 | |
320 | - return collect((array) $value)->map(function ($name) use ($style) { |
|
320 | + return collect((array) $value)->map(function($name) use ($style) { |
|
321 | 321 | return "<span class='badge bg-{$style}'>$name</span>"; |
322 | 322 | })->implode(' '); |
323 | 323 | }); |
@@ -332,7 +332,7 @@ discard block |
||
332 | 332 | { |
333 | 333 | $field = $this; |
334 | 334 | |
335 | - return $this->as(function ($value) use ($field) { |
|
335 | + return $this->as(function($value) use ($field) { |
|
336 | 336 | $content = json_decode($value, true); |
337 | 337 | |
338 | 338 | if (json_last_error() == 0) { |
@@ -443,7 +443,7 @@ discard block |
||
443 | 443 | public function render() |
444 | 444 | { |
445 | 445 | if ($this->showAs->isNotEmpty()) { |
446 | - $this->showAs->each(function ($callable) { |
|
446 | + $this->showAs->each(function($callable) { |
|
447 | 447 | $this->value = $callable->call( |
448 | 448 | $this->parent->getModel(), |
449 | 449 | $this->value |