first upload all files
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
<div class="table-responsive">
|
||||
<table class="table table-borderless my-downloads-table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>{{ trans('storefront::account.downloads.filename') }}</th>
|
||||
<th>{{ trans('storefront::account.action') }}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
<tbody>
|
||||
@foreach ($downloads as $download)
|
||||
<tr>
|
||||
<td>
|
||||
{{ $download->filename }}
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="{{ route('account.downloads.show', encrypt($download->id)) }}" class="btn btn-download">
|
||||
<i class="las la-cloud-download-alt"></i>
|
||||
{{ trans('storefront::account.downloads.download') }}
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
@endforeach
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
Reference in New Issue
Block a user