17 lines
513 B
PHP
17 lines
513 B
PHP
<ul class="list-group">
|
|
@foreach($files as $file)
|
|
<li class="list-group-item">
|
|
<a href="{{route('frontend.downloads.download', [$file->id])}}" target="_blank">
|
|
{{ $file->name }}
|
|
</a>
|
|
|
|
{{-- only show description is one is provided --}}
|
|
@if($file->description)
|
|
- {{$file->description}}
|
|
@endif
|
|
<span
|
|
style="margin-left: 20px">{{ $file->download_count.' '.trans_choice('common.download', $file->download_count) }}</span>
|
|
</li>
|
|
@endforeach
|
|
</ul>
|