@extends('layouts.admin') @section('title', tr('fav_providers')) @section('content-header') {{ tr('fav_providers') }} @if(count($user_details) > 0) - {{ $user_details->name }} @endif @endsection @section('breadcrumb')
  • {{ tr('home') }}
  • @if(count($user_details) > 0)
  • {{ tr('users') }}
  • {{ tr('view_user') }}
  • @else
  • {{ tr('requests') }}
  • @endif
  • {{ tr('fav_providers') }}
  • @endsection @section('content') @include('notification.notify')
    {{ tr('fav_providers') }} @if(count($user_details) > 0) {{ tr('view_users') }} @endif
    @foreach($fav_providers as $i => $fav_provider_details) @endforeach
    {{ tr('id') }} {{ tr('provider') }} {{ tr('email') }} {{ tr('mobile') }} {{ tr('request') }} {{ tr('date') }} {{ tr('action') }}
    {{ showEntries($_GET,$i + 1) }} {{ $fav_provider_details->provider_name }} {{ $fav_provider_details->provider_email }} {{ $fav_provider_details->provider_mobile }} {{ $fav_provider_details->request_name }} {{ $fav_provider_details->created_at }} {{ tr('remove') }}
    @endsection