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

Agent Forms List

@foreach ($agentForms as $agentForm) @endforeach
S.N. Name Number District Display Order Address Status Actions
{{ $loop->iteration }} {{ $agentForm->name }} {{ $agentForm->number }} {{ $agentForm->district->name }} {{ $agentForm->display_order }} {{ Str::limit($agentForm->address, 30) }} @if ($agentForm->is_processed) Published @else Draft @endif
@endsection @section('scripts') @endsection