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

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

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

@lang('modules.projects.files')

@if($upload)
{{ csrf_field() }} {!! Form::hidden('project_id', $project->id) !!}
@else
@lang('messages.storageLimitExceedContactAdmin')
@endif
    @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