@extends('layouts.app') @section('page-title')

{{ $pageTitle }} #{{ $project->id }} - {{ ucwords($project->project_name) }}

@endsection @push('head-script') @endpush @section('content')

@lang('modules.projects.files')

{{ csrf_field() }} {!! Form::hidden('project_id', $project->id) !!}
    @forelse($project->files as $file)
  • {{ $file->filename }}
    @if($file->external_link != '') @elseif(config('filesystems.default') == 'local') @elseif(config('filesystems.default') == 's3') @elseif(config('filesystems.default') == 'google') @elseif(config('filesystems.default') == 'dropbox') @endif @if(is_null($file->external_link))    @endif    {{ $file->created_at->diffForHumans() }}
  • @empty
  • @lang('messages.noFileUploaded')
  • @endforelse
@endsection @push('footer-script') @endpush