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

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

@endsection @push('head-script') @endpush @section('content')
@include('client.projects.show_project_menu')
{{ csrf_field() }}
    @forelse($project->files as $file)
  • {{ $file->filename }}
    @if(is_null($file->external_link)) @if($file->user_id == $user->id)   @endif @endif {{ $file->created_at->diffForHumans() }}
  • @empty
  • @lang('messages.noFileUploaded')
  • @endforelse
@endsection @push('footer-script') @endpush