@extends('admin.layouts.master') @section('title') Agents @stop @section('style') @stop @section('content')

Agents

@foreach($agents as $agent) {{----}} @endforeach
ID Code Agent Name Team Position Email Active Deleted At Actions
{{$agent}}
{{$agent->id}} {{strtoupper($agent->code)}} {{$agent->fullname ?? '' }} {{$agent->team->name ?? '-'}} {{$agent->position}} {{$agent->email_ad}} @if ($agent->active == "Yes") {{$agent->active}} @else {{$agent->active}} @endif {{$agent->deleted_at ?? '-' }}
@if(Session('info'))
@endif
@stop @section('script') @stop