@extends('layouts.admin.app') @section('content')
@foreach (['danger', 'warning', 'success', 'info'] as $msg) @if(Session::has('alert-' . $msg)) @endif @endforeach
List of Agents
@if(count($agents) > 0)
{{-- --}} @php $i=1; @endphp @foreach($agents as $key => $agent) {{-- --}} @endforeach
Sl No. Name Email Created AtUpdated AtAction View
{{$i+$key}} {{ucwords($agent->name)}} {{$agent->email}} {{date('d-m-Y', strtotime($agent->created_at))}}{{$agent->updated_at}}
@else
No Data Found...
@endif
@endsection