{{-- Extends layout --}} @extends(getThemeBasePath()) @section('page_title') {{ $page_title }} @endsection {{-- Content --}} @section('content')

Contact Groups


@foreach ($userGroupCount ?? [] as $roleValue)
{{ $roleValue['role_name'] }}
{{ $roleValue['role_count'] }}
@endforeach
@foreach ($contactData ?? [] as $cData)
@if (empty($cData['image'])) @php if (!empty($cData['first_name'])) { if(empty($cData['last_name'])){ $initials = strtoupper(substr($cData['first_name'], 0, 1)); }else{ $initials = strtoupper(substr($cData['first_name'], 0, 1) . substr($cData['last_name'], 0, 1)); } } @endphp
{{ $initials??'' }}
@else Avatar @endif
@endforeach

Welcome to the My Contacts

It's time to expand our contacts.
Kickstart your contacts growth by adding your next contact.

@endsection @section('scripts') @include('backend.master.my_contacts.comman_script') @endsection