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

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

@endsection @push('head-script') @endpush @section('content')
@include('admin.projects.show_project_menu')

@lang('modules.projects.files')

@if($upload)
{{ csrf_field() }} {!! Form::hidden('project_id', $project->id) !!}
@else
@lang('messages.storageLimitExceed', ['here' => 'Here'])
@endif
    @forelse($project->files as $file)
  • {{ $file->filename }}
    @if(is_null($file->external_link))    @endif    {{ $file->created_at->diffForHumans() }}
  • @empty
  • @lang('messages.noFileUploaded')
  • @endforelse
@endsection @push('footer-script') @endpush