@extends('layouts.app') @section('title', 'Media Agents') @section('content')
Total Agents
| # | Name | Mobile | Company | Rate | Generated | Paid | Due | Status | Actions |
|---|---|---|---|---|---|---|---|---|---|
| {{ $agent->id }} | {{ $agent->name }} | {{ $agent->mobile }} | {{ $agent->company_name ?? '—' }} | {{ number_format($agent->commission_rate, 2) }}% | {{ number_format($agent->total_commission, 2) }} | {{ number_format($agent->total_paid, 2) }} | {{ number_format($agent->total_due, 2) }} | {{ $agent->is_active ? 'Active' : 'Inactive' }} | |
| No media agents found. | |||||||||