{{-- table loader --}}
{{__('admin.loading')}}
{{-- table loader --}} {{-- table content --}} @foreach ($provider_updates as $update) @endforeach
{{__('admin.provider_name')}} {{__('admin.category')}} {{__('admin.date')}} {{__('admin.control')}}
{{$update->name ?? '-'}} {{$update->category->name ?? '-'}} {{$update->created_at->format('Y-m-d')}}
{{-- 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)
{{ $provider_updates->links() }}
@endif {{-- pagination --}}