📂 Raw Call Logs
{{-- Search Bar --}}
@foreach($records as $row) @endforeach
Time (EAT) Agent Source Phone Category Status Notes
{{ $row['timestamp'] }} {{ $row['agent_name'] }} {{ $row['source'] }} {{ $row['phone'] }} {{ $row['category'] }} @php $color = match($row['lead_status']) { 'Interested', 'Registered', 'Registered (Paid Activation)' => 'text-success-700 bg-success-50 ring-success-600/20', 'Not Interested' => 'text-danger-700 bg-danger-50 ring-danger-600/20', default => 'text-warning-700 bg-warning-50 ring-warning-600/20', }; @endphp {{ $row['lead_status'] }} {{ Str::limit($row['notes'], 50) }}
{{-- Pagination Links --}}
{{ $records->links() }}