phpvms/resources/views/layouts/default/downloads/index.blade.php

28 lines
801 B
PHP
Raw Normal View History

2018-04-03 07:37:41 +08:00
@extends('app')
@section('title', __trans_choice('Download', 2))
2018-04-03 07:37:41 +08:00
@section('content')
@include('flash::message')
<div class="row">
<div class="row-sm-12">
<h2>{{ __trans_choice('Download', 2) }}</h2>
2018-04-03 07:37:41 +08:00
</div>
</div>
@if(!$grouped_files || \count($grouped_files) === 0)
<div class="jumbotron text-center">{{ __('There are no downloads!') }}</div>
@else
@foreach($grouped_files as $group => $files)
<div class="row" style="margin-bottom: 40px;">
<div class="col-12">
<h4 class="description">{{ $group }}</h4>
</div>
2018-04-03 07:37:41 +08:00
<div class="col-12">
@include('downloads.table', ['files' => $files])
</div>
2018-04-03 07:37:41 +08:00
</div>
@endforeach
@endif
2018-04-03 07:37:41 +08:00
@endsection