@extends('layouts.admin') @section('title', tr('abuse_providers')) @section('content-header', tr('abuse_providers')) @section('breadcrumb')
  • {{ tr('home') }}
  • {{ tr('abuse_providers') }}
  • @endsection @section('content') @include('notification.notify')
    {{ tr('abuse_providers') }}
    @if(count($abuse_providers) > 0) @foreach($abuse_providers as $i => $abuse_provider_details) @endforeach
    {{ tr('id') }} {{ tr('user') }} {{ tr('provider') }} {{ tr('request') }} {{ tr('comment') }} {{ tr('date') }}
    {{ showEntries($_GET,$i+1) }} {{ $abuse_provider_details->user->name ?? "" }} {{ $abuse_provider_details->provider->name ?? "" }} @if($abuse_provider_details->requests) {{ $abuse_provider_details->requests ? $abuse_provider_details->requests->name : "" }} @endif @if($abuse_provider_details->userRating) {{ $abuse_provider_details->userRating ? $abuse_provider_details->userRating->comment : "" }} @endif {{ $abuse_provider_details->created_at ? $abuse_provider_details->created_at->diffForHumans() : "-" }}
    {{ $abuse_providers->links() }}
    @else

    {{ tr('no_result_found') }}

    @endif
    @endsection