Skip to content

Commit 695f4c9

Browse files
committed
fix upload multiple column
1 parent 2c87086 commit 695f4c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/resources/views/crud/columns/upload_multiple.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
@if ($value && count($value))
1111
@foreach ($value as $file_path)
1212
@php
13-
$column['wrapper']['href'] = $column['wrapper']['href'] ?? ( isset($column['disk'])?asset(\Storage::disk($column['disk'])->url($file_path)):asset($column['prefix'].$file_path) );
13+
$column['wrapper']['href'] = ( isset($column['disk'])?asset(\Storage::disk($column['disk'])->url($file_path)):asset($column['prefix'].$file_path) );
1414
$text = $column['prefix'].$file_path;
1515
@endphp
1616
@includeWhen(!empty($column['wrapper']), 'crud::columns.inc.wrapper_start')

0 commit comments

Comments
 (0)