{{-- table loader --}}
{{awtTrans('جاري التحميل')}}
{{-- table loader --}} {{-- table content --}} @foreach ($rows as $row) @endforeach
{{awtTrans('التاريخ')}} {{awtTrans('الاسم')}} {{awtTrans('المنطقة')}} {{awtTrans('عرض الفترات')}} {{awtTrans('التحكم')}}
{{\Carbon\Carbon::parse($row->created_at)->format('d/m/Y')}} {{$row->name}} {{$row->region->name}} @if($row->users()->count() == 0) @endif
{{-- 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 \Illuminate\Pagination\AbstractPaginator )
{{trans( 'pagination.showing') . $rows->firstItem() . trans('pagination.to') . $rows->lastItem() . trans('pagination.of') . $rows->total() . trans('pagination.entries') }}
{!! $rows->links() !!} {{-- {{$rows->links()}}--}} {{-- {{$rows->currentPage()}}--}}
@endif {{-- pagination links div --}}