@extends('layouts.admin') @section('title', tr('services')) @section('content-header') {{ tr('services') }} - {{ $provider_details->name }} @endsection @section('breadcrumb')
  • {{ tr('home') }}
  • {{ tr('providers') }}
  • {{ tr('services') }}
  • @endsection @section('content') @include('notification.notify')
    {{ tr('services') }} {{ tr('view_providers') }}
    @foreach($provider_services as $i => $provider_service_details) @endforeach
    {{ tr('s_no') }} {{ tr('category') }} {{ tr('sub_category') }} {{ tr('price_per_hour') }} {{ tr('description') }} {{ tr('joined') }} {{ tr('updated') }} {{ tr('status') }}
    {{ showEntries($_GET,$i+1) }} {{ $provider_service_details->category ? $provider_service_details->category->name : " - " }} {{ $provider_service_details->subCategory ? $provider_service_details->subCategory->name : "-" }} {{ $provider_service_details->price_per_hour ? $provider_service_details->price_per_hour : "0.00" }} {{ $provider_service_details->description ? $provider_service_details->description : " - " }} {{ date('d-m-Y H:i:s' , strtotime($provider_service_details->created_at)) }} {{ date('d-m-Y H:i:s' , strtotime($provider_service_details->updated_at)) }} @if($provider_service_details->status) {{ tr('available') }} @endif
    {{ $provider_services->links() }}
    @endsection