@extends('layouts/master') @section('content')
@if(Session::get('locale') == 'en') FR @else EN @endif @can('isAdmin') {{ __('web.back') }} @endcan

Admin Dashboard

{{ __('web.add_file') }}

@csrf

{{ __('web.history_of_files') }}

@foreach ($patient->files as $i => $file)

{{ __('web.file_name') }}:

{{ $file->file }}

{{ __('web.date_of_needed') }}:

{{ date('d-m-Y', strtotime($file->date_needed)) }}

{{ __('web.date_of_deletion') }}:

{{ date('d-m-Y', strtotime($file->date_deletion)) }}

{{ __('web.notes') }}

{{ $file->note }}

{{ __('web.download_link') }}

Download Edit Delete
@endforeach
@endsection @push('scripts') @endpush