@extends('layouts.admin') @section('header-content') @endsection @section('content')
Filter
All Agencies
@if(!empty($agencies[0]))
@foreach($agencies as $key=>$agency) @endforeach
# Name Status Action
{{$key+1}} {{$agency->name}} @if($agency->status)Active @else Inactive @endif
{!! method_field('DELETE') !!} {!! csrf_field() !!}

{{ $agencies->links() }}
@else

No Records Found

@endif
@endsection @section('footer-content') @endsection