@extends('adminlte::page') @section('title', 'Documents') @section('content_header')

Documents

@endsection @include('partials.datatables') @section('content')
Reset

All Documents

@foreach($documents as $d) @endforeach
# Case Type Confidential Filename Uploaded Actions
{{ $d->id }} @if($d->case) {{ $d->case->title }} @else — @endif {{ ucfirst($d->document_type) }} {{ $d->is_confidential ? 'Yes' : 'No' }} {{ $d->original_filename }} {{ optional($d->created_at)->format('Y-m-d H:i') }} Download Edit
@csrf @method('DELETE')
@endsection @push('js') @endpush