@php use Illuminate\Pagination\AbstractPaginator; @endphp
{{-- table loader --}}
{{awtTrans('جاري التحميل')}}
{{-- table loader --}}
{{-- table content --}}
| ### |
{{ awtTrans('الاسم') }} |
{{ awtTrans('قبول/رفض الطلب') }} |
{{ awtTrans('التحكم') }} |
@foreach ($rows as $row)
| {{$row->id}} |
{{ $row->user?->name }} |
@if ($row->approved == 0)
@elseif($row->approved == 1)
@else
@endif
|
|
@endforeach
{{-- table content --}}
{{-- no data found div --}}
@if ($rows->count() == 0)
{{awtTrans('لا يوجد نتائج مطابقة')}}
@endif
{{-- no data found div --}}
{{-- pagination links div --}}
@if ($rows->count() > 0 && $rows instanceof AbstractPaginator )
{{trans( 'pagination.showing') . $rows->firstItem() . trans('pagination.to') . $rows->lastItem() . trans('pagination.of') . $rows->total() . trans('pagination.entries') }}
{{$rows->links()}}
@endif
{{-- pagination links div --}}