@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 ? "" . currencyFormatter($service->price) . ' ' . currencyFormatter($service->discounted_price) : currencyFormatter($service->price) !!}
@endforeach
@endforeach
@csrf
 
 
@lang('app.service') @lang('app.price') @lang('app.quantity') @lang('app.subTotal')
@lang("messages.selectService")
@lang('app.product') @lang('app.price') @lang('app.quantity') @lang('app.subTotal')
@lang("messages.selectProduct")
@lang('app.service') @lang('app.subTotal')
{{ currencyFormatter(0) }}
@lang('app.discount') (%)
@lang('app.totalTax')
{{ currencyFormatter(0) }}
@lang('app.applyCoupon')
@lang('app.service') @lang('app.total')
{{ currencyFormatter(0) }}
@lang('app.productTotal')
{{ currencyFormatter(0) }}

@lang('app.grand') @lang('app.total')

{{ currencyFormatter(0) }}

@endsection @push('footer-js') @include("partials.currency_format") @endpush