@extends('layouts.master') @push('head-css') @endpush @section('content')
@foreach($categories as $category)
@if($category->services->count() > 0)
{{ ucfirst($category->name) }}
@endif @foreach($category->services as $service)

{{ ucwords($service->name) }}

{!! ($service->discount > 0) ? "".$settings->currency->currency_symbol.$service->price." ".$settings->currency->currency_symbol.$service->discounted_price : $settings->currency->currency_symbol.$service->price !!}
@endforeach
@endforeach
@csrf
 
@lang('app.service') @lang('app.price') @lang('app.quantity') @lang('app.subTotal')
@lang("messages.selectService")
@lang('app.subTotal')
{{ $settings->currency->currency_symbol }}0
@lang('app.discount') (%)
@if(!is_null($tax))
{{ $tax->tax_name.' ('.$tax->percent.'%)' }}
{{ $settings->currency->currency_symbol }}0
@else @endif
@lang('app.applyCoupon')

@lang('app.total')

{{ $settings->currency->currency_symbol }}0

{{--pay Modal--}} {{--pay Modal Ends--}} @endsection @push('footer-js') @endpush