first upload all files
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
<div class="checkbox">
|
||||
<input type="checkbox" class="select-row" value="{{ $entity->id }}" id="{{ $id = str_random() }}">
|
||||
<label for="{{ $id }}"></label>
|
||||
</div>
|
||||
@@ -0,0 +1,3 @@
|
||||
<span data-toggle="tooltip" title="{{ is_null($date) ? '' : $date->toFormattedDateString() }}">
|
||||
{!! is_null($date) ? '—' : $date->diffForHumans() !!}
|
||||
</span>
|
||||
@@ -0,0 +1,7 @@
|
||||
<div class="thumbnail-holder">
|
||||
@if ($file->exists)
|
||||
<img src="{{ $file->path }}" alt="thumbnail">
|
||||
@else
|
||||
<i class="fa fa-picture-o"></i>
|
||||
@endif
|
||||
</div>
|
||||
@@ -0,0 +1,6 @@
|
||||
<th>
|
||||
<div class="checkbox">
|
||||
<input type="checkbox" class="select-all" id="{{ $name ?? '' }}-select-all">
|
||||
<label for="{{ $name ?? '' }}-select-all"></label>
|
||||
</div>
|
||||
</th>
|
||||
Reference in New Issue
Block a user