@extends('admin.layouts.layout') @section('css') @endsection @section('content')
| Agency | Phone | State | Status | Actions | ||
|---|---|---|---|---|---|---|
|
@php
$avatarThumb = isset($agency['avatar']['thumb'])
? $agency['avatar']['thumb']
: null;
@endphp
@if($avatarThumb)
@php
$name = $agency['name'] ?? '';
$words = explode(' ', $name);
$initials = '';
$count = 0;
foreach ($words as $word) {
if (!empty($word) && $count < 2) {
$initials .= mb_substr($word, 0, 1);
$count++;
}
}
echo strtoupper($initials);
@endphp
@endif
{{ $agency['name'] }}
|
{{ \App\Helpers\Helper::formatPhone($agency['office_phone'] ?? '') }} | {{ $agency['office_email'] }} | {{ $agency['state'] }} |
|
@if(isset($permission) && isset($permission['show']) && $permission['show'])
|
|
|
No Agencies Found.
|
||||||