@if ($sectionData && isset($sectionData['section_3']) && $sectionData['section_3']['section_3'] == 1)
{{ $sectionData['section_3']['title'] }}
{{ $sectionData['section_3']['subtitle'] }}
{{ __('clinic.view_all') }}
@for ($i = 0; $i < 4; $i++) @include('frontend::components.card.shimmer_service_card') @endfor @foreach ($sectionData['section_3']['service_id'] as $service_id) @php $service = \Modules\Clinic\Models\ClinicsService::where('id', $service_id)->first(); if (!empty($service)) { $discount_amount=0; if($service->discount){ $discount_amount = ($service->discount_type == 'percentage') ? $service->charges * $service->discount_value / 100 : $service->discount_value; } $service->payable_amount = $service->charges - $discount_amount + $service->inclusive_tax_price ; } @endphp
@if($service) @endif
@endforeach
@endif @push('after-scripts') @endpush