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