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

{{ $pageTitle }} #{{ $lead->id }} - {{ ucwords($lead->company_name) }}

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

@lang('modules.projects.files')

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