@include('admin.header')

Order Documents

@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif
@if($orderConfirmation)
Documents for Order Confirmation: id) }}'> #{{ $orderConfirmation->order_number ?? $orderConfirmation->id }}
@endif
@forelse ($documents as $document) @empty @endforelse
ID File Name Category Size Uploaded By Uploaded At Actions
{{ $document->id }} {{ $document->file_name }} {{ ucfirst(str_replace('_', ' ', $document->category)) }} {{ number_format($document->file_size / 1024, 2) }} KB {{ $document->uploader->name ?? 'N/A' }} {{ $document->created_at->format('Y-m-d H:i') }}
id) }}' class='btn btn-success btn-sm' title='Download'> id) }}' class='btn btn-warning btn-sm' title='Edit'>
id) }}' method='POST' style='display:inline-block;'> @csrf @method('DELETE')

No documents found for this order confirmation.

@include('admin.footer')