@extends('admin.layouts.app') @section('title', 'Courier Error Logs') @section('content')

Courier Error Logs

View and retry failed courier submissions

@if(session('success'))
{{ session('success') }}
@endif
Reset
@forelse($errors as $error) @empty @endforelse
Order ID Courier Error Message Attempts Date Actions
#{{ $error->order_id }} {{ ucfirst($error->courier) }}

{{ $error->error_message }}

@if($error->response_data) @endif
{{ $error->retry_count }}

{{ $error->created_at->diffForHumans() }}

{{ $error->created_at->format('M d, h:i A') }}

@csrf

No Errors Found

All courier submissions are successful!

@if($logs->hasPages())
{{ $logs->links() }}
@endif
@endsection @push('scripts') @endpush