@extends('layouts.admin') @section('title', tr('services')) @section('content-header') {{ tr('services') }} - {{ $provider_details->name }} @endsection @section('breadcrumb')
| {{ 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 |