We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c87086 commit 695f4c9Copy full SHA for 695f4c9
src/resources/views/crud/columns/upload_multiple.blade.php
@@ -10,7 +10,7 @@
10
@if ($value && count($value))
11
@foreach ($value as $file_path)
12
@php
13
- $column['wrapper']['href'] = $column['wrapper']['href'] ?? ( isset($column['disk'])?asset(\Storage::disk($column['disk'])->url($file_path)):asset($column['prefix'].$file_path) );
+ $column['wrapper']['href'] = ( isset($column['disk'])?asset(\Storage::disk($column['disk'])->url($file_path)):asset($column['prefix'].$file_path) );
14
$text = $column['prefix'].$file_path;
15
@endphp
16
@includeWhen(!empty($column['wrapper']), 'crud::columns.inc.wrapper_start')
0 commit comments