@extends('layouts.includes.header')
@section('content')
@include('layouts.includes.adminlte.alerts')
Name
|
Email
|
Phone
|
Status
|
Action
|
@if(empty($agents))
No Record Found |
@else
@foreach($agents as $agent)
{{$agent['firstname']}} |
{{$agent['email']}} |
{{$agent['mobile']}} |
{{($agent['status'] == 0)?'Inactive':'Active'}}
|
|
@endforeach
@endif
@endsection