@extends('layouts.app') @section('title', trans('project.files') . ' | ' . $project->name) @section('content') @include('projects.partials.breadcrumb',['title' => trans('project.files')])
| {{ trans('app.table_no') }} | {{ trans('file.file') }} | {{ trans('file.updated_at') }} | {{ trans('file.size') }} | {{ trans('file.download') }} | {{ trans('app.action') }} | @forelse($files as $key => $file)
|---|---|---|---|---|---|
| {{ 1 + $key }} |
{{ $file->title }}
{{ $file->description }}
|
{{ $file->getDate() }}
{{ $file->getTime() }}
|
{{ formatSizeUnits($file->getSize()) }} | {!! html_link_to_route('files.download', '', [$file->id], ['icon' => 'file', 'title' => trans('file.download')]) !!} | {!! html_link_to_route('projects.files', '', [$project->id, 'action' => 'edit', 'id' => $file->id], ['icon' => 'edit', 'title' => trans('file.edit')]) !!} |
| {{ trans('file.empty') }} | |||||