@extends('layouts.app') @section('title', 'Manage Agents') @section('content')
Manage delivery agents and their assignments
| Agent Info | Contact Details | Vehicle Info | Performance | Status | Joined Date | Actions |
|---|---|---|---|---|---|---|
|
{{ strtoupper(substr($agent->user->name, 0, 2)) }}
{{ $agent->user->name }}
{{ $agent->user->email }} {{ $agent->agent_code }} |
{{ $agent->phone }}
{{ Str::limit($agent->address, 30) }} |
{{ ucfirst($agent->vehicle_type) }} {{ $agent->license_number }} |
{{ $agent->assignedOrders->count() }}
Total Orders
{{ $agent->assignedOrders->where('status', 'delivered')->count() }} Delivered
|
@if($agent->is_active)
Active
Available @else Inactive Unavailable @endif |
{{ $agent->created_at->format('M d, Y') }}
{{ $agent->created_at->format('h:i A') }} |