@php
$i =1;
@endphp
@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
|
{{$i++}}
|
{{$clients->title_ar}}
|
@if($clients->image)
@endif
|
@can('update_status_clients')
{{$text}}
|
@endcan
@can('update_clients')
|
@endcan
@can('delete_clients')
|
@endcan
@endforeach
@else
| لا يوجد بيانات |
@endif