@extends('layouts.admin') @section('title', 'Soubory ke stažení') @section('content')

Soubory ke stažení

Přidat
@foreach($fileDownloads->get() as $fileDownload) @endforeach
ID Název Název souboru Typ Sekce Velikost Přidáno Akce
{{ $fileDownload->id }} {{ $fileDownload->title ?: $fileDownload->filename }}
EN: {{ $fileDownload->getTranslation('title', 'en') }}
{{ $fileDownload->filename }} {{ $fileDownload->extension }} {{ \App\FileDownload::$sections[$fileDownload->section] }} @if($fileDownload->size < 1024*1024) {{ ceil($fileDownload->size / (1024)) }} kB @else {{ ceil($fileDownload->size / (1024*1024)) }} MB @endif {{ $fileDownload->created_at->format('j.n.Y') }}
@endsection