{{-- table loader --}}
{{__('admin.loading')}}
{{-- table loader --}}
{{-- table content --}}
| {{__('admin.provider_name')}} |
{{__('admin.category')}} |
{{__('admin.date')}} |
{{__('admin.control')}} |
@foreach ($provider_updates as $update)
| {{$update->name ?? '-'}} |
{{$update->category->name ?? '-'}} |
{{$update->created_at->format('Y-m-d')}} |
|
@endforeach
{{-- table content --}}
{{-- no data found div --}}
@if ($provider_updates->count() == 0)
{{__('admin.there_are_no_matches_matching')}}
@endif
{{-- no data found div --}}
{{-- pagination --}}
@if ($provider_updates->count() > 0 && $provider_updates instanceof \Illuminate\Pagination\AbstractPaginator)