{{-- table loader --}}
{{__('admin.loading')}}
{{-- table loader --}} {{-- table content --}} @foreach($reports as $report) @endforeach
{{__('admin.date')}} {{__('admin.user')}} {{__('admin.order_number')}} {{__('admin.provider')}} {{__('admin.report_title')}} {{__('admin.control')}}
{{\Carbon\Carbon::parse($report->created_at)->format('d/m/Y')}} {{$report->user->name ?? ''}} {{$report->order->order_num ?? ''}} {{$report->provider->name ?? ''}} {{$report->title ?? ''}}
{{-- table content --}} {{-- no data found div --}} @if ($reports->count() == 0)
{{__('admin.there_are_no_matches_matching')}}
@endif {{-- no data found div --}}
{{-- pagination links div --}} @if ($reports->count() > 0 && $reports instanceof \Illuminate\Pagination\AbstractPaginator )
{{$reports->links()}}
@endif {{-- pagination links div --}}