| {{ $key + 1 }} |
{{ isset($user->name) ? ucwords($user->name) : '-' }} |
@php
$branchName = $user->branches ? $user->branches->pluck('name_en')->implode(', ') : '-';
@endphp
{{ ucwords($branchName) }}
|
{{ isset($user->name) ? ucwords($user->name) : '-' }} |
{{ isset($user->email) ? $user->email : '-' }} |
{{ isset($user->mobileCode->dial_code) ? $user->mobileCode->dial_code : '' }}
{{ isset($user->mobile_number) ? $user->mobile_number : '' }}
|
@forelse ($user->specialists as $item)
{{ $item->name_en }}
@unless ($loop->last)
,
@endunless
@empty
@endforelse
|
{{ ucfirst($user->status) }}
|
@endforeach
@endif