@extends('frontend::layouts.master') @section('title', $service->name ) @section('content') @include('frontend::components.section.breadcrumb')
service-image
{{ __('frontend.about_service') }}

{{ $service->description }}

{{ __('frontend.choose_clinic') }}
@if ($service->ClinicServiceMapping->count() > 3) {{ __('clinic.view_all') }} @endif
@if ($service->ClinicServiceMapping)
@foreach ($service->ClinicServiceMapping->take(3) as $clinic_service)
@endforeach
@endif
{{ optional($service->category)->name }}
{{ $service->name }}
@if ($service->discount)
{{ Currency::format($service->payable_amount) }} {{ Currency::format($service->charges) }}
{{ $service->discount_type == 'percentage' ? $service->discount_value . '%' : Currency::format($service->discount_value) }} off
@else
{{ Currency::format($service->payable_amount) }}
@endif @if($service->inclusive_tax_price >0 )
{{ __('messages.lbl_with_inclusive_tax') }}
@endif
{{ __('frontend.duration') }}
{{getDurationFormat($service->duration_min) }}
{{ __('frontend.book_now') }}
@endsection @push('after-scripts') @endpush