{{-- table loader --}}
{{awtTrans('جاري التحميل')}}
{{-- table loader --}} {{-- table content --}} @foreach ($rows as $row) @endforeach
{{ awtTrans('الصورة') }} {{ awtTrans('الاسم') }} {{ awtTrans('البريد الالكتروني') }} {{ awtTrans('رقم الهاتف') }} {{ awtTrans('التحكم') }}
{{$row->id}} {{ $row->name }} {{ $row->email }} {{ $row->phone }}
{{-- 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 )
{{$rows->links()}}
@endif {{-- pagination links div --}}