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

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

@lang('app.edit')
@endsection @push('head-script') @endpush @section('content')
@include('admin.projects.show_project_menu')
{{ csrf_field() }}
    @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