@extends('layouts.main') @section('content') @push('head') Page title | Site title @endpush
@if($errors->any())
@endif @if (session('status'))
{{ session('status') }}
@endif @if (session('error_m'))
{{ session('error_m') }}
@endif

All Agencies

All information about various Agencies @can('kiosk_management') under you @endcan
@if(sizeof($agencies)>0) @php $counter=1; @endphp @foreach($agencies as $agency) @php $counter++; @endphp @endforeach @endif
# Agency Logo Address HQ Tel Agency Email Website HQ City Actions
{{$counter}} {{$agency->agency_name}} {{$agency->address_hq}}
  • {{$agency->phone1}}
  • {{$agency->phone2}}
  • {{$agency->phone3}}
{{$agency->email}} {{$agency->website}} {{$agency->name}}
@can('manage_user') @endcan
{{-- delete agency modal --}}
{{-- modals --}} {{-- end modals --}} @push('script') {{-- --}} @endpush @endsection'