@extends('backend.layouts.main') @section('title') Agent Details Management @endsection @section('content')

Agent Details List

Export to Excel
@csrf
@foreach ($agentDetails as $agentDetail) @endforeach
S.N. State District Agent Names Contact Numbers Display Order Contact Persons Status Actions
{{ $loop->iteration }} {{ $agentDetail->state->name_en ?? '-' }} {{ $agentDetail->district->name ?? '-' }} {{ $agentDetail->state_agent_name ?? '-' }} {{ $agentDetail->contact_no ?? '-' }} {{ $agentDetail->display_order }} {{ $agentDetail->contact_person ?? '-' }} @if ($agentDetail->is_published) Published @else Draft @endif
@endsection @section('scripts') @endsection