{{-- table loader --}}
{{__('admin.loading')}}
{{-- table loader --}} {{-- table content --}} @foreach ($friendreports as $report) @endforeach
{{__('admin.date')}} {{__('admin.who_reported')}} {{__('admin.who_got_reported')}} {{__('admin.reason')}} {{__('admin.control')}}
{{\Carbon\Carbon::parse($report->created_at)->format('d/m/Y')}} {{ $report->user?->full_name ?? '----' }} {{ $report->reportable?->full_name ?? '----' }} {{ Str::limit($report->reason, 30) ?? '----' }}
{{-- table content --}} {{-- no data found div --}} @if ($friendreports->count() == 0)
{{__('admin.there_are_no_matches_matching')}}
@endif {{-- no data found div --}}
{{-- pagination links div --}} @if ($friendreports->count() > 0 && $friendreports instanceof \Illuminate\Pagination\AbstractPaginator )
{{$friendreports->links()}}
@endif {{-- pagination links div --}}