@extends('layouts-new.front') @section('content')

{{ $service->name }}

{{ $service->location->name }}


{{ $settings->currency->currency_symbol }}{{ $service->price }}

@if ($service->discount > 0)

@lang('app.discount') : @switch($service->discount_type) @case('percent') {{ $service->discount.' %' }} @break @case('fixed') {{ $settings->currency->currency_symbol.' '.$service->discount }} @break @endswitch

@endif
@php $product = current($reqProduct);@endphp

{!! $service->description !!}



@endsection @push('footer-script') @endpush