@php
$i =1;
@endphp
@if(count($data['static']) > 0)
@foreach($data['static'] as $static)
@php
if($static->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++}}
|
{{$static->title_ar}}
|
@if($static->photo)
@endif
|
{{$static->slug}}
|
@can('update_status_page')
{{$text}}
|
@endcan
@can('edit_page')
|
@endcan
@can('delete_page')
@if($static->delete_flag == 0)
@else
---
@endif
|
@endcan
@endforeach
@else
| لا يوجد بيانات |
@endif