{{ __('Authorization Requests') }}

@can('create', App\Models\AuthorizationRequest::class) Create Request @endcan
@if (session('success'))
{{ session('success') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
Clear
@forelse ($requests as $request) @empty @endforelse
Tracking Listing Partner Status Assigned Created Actions
{{ $request->shipment_tracking_number }}
Brand {{ $request->brand_id }} ยท Listing {{ $request->listing_id }}
{{ $request->listing_title }}
{{ $request->listing_condition }}
{{ $request->logisticPartner?->name ?? '-' }} @if ($request->isProcessed()) Processed @elseif ($request->isAssigned()) Assigned @else Unassigned @endif {{ $request->assignedTo?->name ?? '-' }} {{ $request->created_at->format('M d, Y') }}
View @can('update', $request) Edit @endcan @can('delete', $request)
@csrf @method('DELETE')
@endcan
No authorization requests found. Try adjusting your filters.
@if ($requests->hasPages())
{{ $requests->links() }}
@endif