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