@if(count($data['clients']) > 0)
@foreach($data['clients'] as $clients)
@php
if($clients->status==1) {
$class='btn btn-success m-btn m-btn--icon m-btn--pill';
$color='green';
$icon='check';
$text = "مفعل";
} else {
$class='btn btn-danger m-btn m-btn--icon m-btn--pill';
$color='red';
$icon='check';
$text = "غير مفعل";
}
@endphp
|
{{ $loop->index+1 }}
|
{{ $clients->name?? '-' }}
|
{{ $clients->email?? '-' }}
|
{{ $clients->mobile?? '-' }}
|
{{--
@if($clients->gender == 1)
ذكر
@else
انثى
@endif
| --}}
{{ $clients->dob?? '-' }}
|
{{--
{{ $clients->name_governorate?? '-' }}
| --}}
{{--
{{ $clients->name_city?? '-' }}
| --}}
{{--
{{ $clients->title?? '-' }}
| --}}
{{ $clients->name_Degree?? '-' }}
|
{{--
{{ $clients->Specialization?? '-' }}
| --}}
|
@can('change_status_clients')
{{ $text }}
|
@endcan
@can('update_clients')
|
@endcan
{{-- @can('change_password_client')
|
@endcan --}}
@can('delete_clients')
|
@endcan
@endforeach
@else
| لا يوجد بيانات |
@endif