@@ -179,7 +179,7 @@ discard block |
||
179 | 179 | */ |
180 | 180 | public function using(array $values, $default = null) |
181 | 181 | { |
182 | - return $this->as(function ($value) use ($values, $default) { |
|
182 | + return $this->as(function($value) use ($values, $default) { |
|
183 | 183 | if (is_null($value)) { |
184 | 184 | return $default; |
185 | 185 | } |
@@ -199,7 +199,7 @@ discard block |
||
199 | 199 | */ |
200 | 200 | public function image($server = '', $width = 200, $height = 200) |
201 | 201 | { |
202 | - return $this->unescape()->as(function ($path) use ($server, $width, $height) { |
|
202 | + return $this->unescape()->as(function($path) use ($server, $width, $height) { |
|
203 | 203 | if (empty($path)) { |
204 | 204 | return ''; |
205 | 205 | } |
@@ -234,7 +234,7 @@ discard block |
||
234 | 234 | { |
235 | 235 | $field = $this; |
236 | 236 | |
237 | - return $this->unescape()->as(function ($path) use ($server, $download, $field) { |
|
237 | + return $this->unescape()->as(function($path) use ($server, $download, $field) { |
|
238 | 238 | $name = basename($path); |
239 | 239 | |
240 | 240 | $field->wrapped = false; |
@@ -282,7 +282,7 @@ discard block |
||
282 | 282 | */ |
283 | 283 | public function link($href = '', $target = '_blank') |
284 | 284 | { |
285 | - return $this->unescape()->as(function ($link) use ($href, $target) { |
|
285 | + return $this->unescape()->as(function($link) use ($href, $target) { |
|
286 | 286 | $href = $href ?: $link; |
287 | 287 | |
288 | 288 | return "<a href='$href' target='{$target}'>{$link}</a>"; |
@@ -298,12 +298,12 @@ discard block |
||
298 | 298 | */ |
299 | 299 | public function label($style = 'success') |
300 | 300 | { |
301 | - return $this->unescape()->as(function ($value) use ($style) { |
|
301 | + return $this->unescape()->as(function($value) use ($style) { |
|
302 | 302 | if ($value instanceof Arrayable) { |
303 | 303 | $value = $value->toArray(); |
304 | 304 | } |
305 | 305 | |
306 | - return collect((array) $value)->map(function ($name) use ($style) { |
|
306 | + return collect((array) $value)->map(function($name) use ($style) { |
|
307 | 307 | return "<span class='label label-{$style}'>$name</span>"; |
308 | 308 | })->implode(' '); |
309 | 309 | }); |
@@ -318,12 +318,12 @@ discard block |
||
318 | 318 | */ |
319 | 319 | public function badge($style = 'blue') |
320 | 320 | { |
321 | - return $this->unescape()->as(function ($value) use ($style) { |
|
321 | + return $this->unescape()->as(function($value) use ($style) { |
|
322 | 322 | if ($value instanceof Arrayable) { |
323 | 323 | $value = $value->toArray(); |
324 | 324 | } |
325 | 325 | |
326 | - return collect((array) $value)->map(function ($name) use ($style) { |
|
326 | + return collect((array) $value)->map(function($name) use ($style) { |
|
327 | 327 | return "<span class='badge bg-{$style}'>$name</span>"; |
328 | 328 | })->implode(' '); |
329 | 329 | }); |
@@ -338,7 +338,7 @@ discard block |
||
338 | 338 | { |
339 | 339 | $field = $this; |
340 | 340 | |
341 | - return $this->unescape()->as(function ($value) use ($field) { |
|
341 | + return $this->unescape()->as(function($value) use ($field) { |
|
342 | 342 | $content = json_decode($value, true); |
343 | 343 | |
344 | 344 | if (json_last_error() == 0) { |
@@ -474,7 +474,7 @@ discard block |
||
474 | 474 | public function render() |
475 | 475 | { |
476 | 476 | if ($this->showAs->isNotEmpty()) { |
477 | - $this->showAs->each(function ($callable) { |
|
477 | + $this->showAs->each(function($callable) { |
|
478 | 478 | $this->value = $callable->call( |
479 | 479 | $this->parent->getModel(), |
480 | 480 | $this->value |