@@ -184,7 +184,7 @@ |
||
184 | 184 | $attributes = array_merge($attributes, $this->attributes); |
185 | 185 | } |
186 | 186 | |
187 | - $attributes = collect($attributes)->map(function ($attribute, $name) { |
|
187 | + $attributes = collect($attributes)->map(function($attribute, $name) { |
|
188 | 188 | return "$name='$attribute'"; |
189 | 189 | })->implode(' '); |
190 | 190 |
@@ -1,5 +1,5 @@ |
||
1 | 1 | @if($errors->hasBag('exception') && env('APP_DEBUG') == true) |
2 | - <?php $error = $errors->getBag('exception');?> |
|
2 | + <?php $error = $errors->getBag('exception'); ?> |
|
3 | 3 | <div class="alert alert-warning alert-dismissable"> |
4 | 4 | <button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button> |
5 | 5 | <h4> |
@@ -640,13 +640,13 @@ |
||
640 | 640 | } |
641 | 641 | |
642 | 642 | /* Build row elements */ |
643 | - $template = array_reduce($fields, function ($all, $field) { |
|
643 | + $template = array_reduce($fields, function($all, $field) { |
|
644 | 644 | $all .= "<td>{$field}</td>"; |
645 | 645 | return $all; |
646 | 646 | }, ''); |
647 | 647 | |
648 | 648 | /* Build cell with hidden elements */ |
649 | - $template .= '<td class="hidden">' . implode('', $hidden) . '</td>'; |
|
649 | + $template .= '<td class="hidden">'.implode('', $hidden).'</td>'; |
|
650 | 650 | |
651 | 651 | $this->setupScript(implode("\r\n", $scripts)); |
652 | 652 |