@extends('layouts.front') @push('styles') @endpush @section('content')

@lang('front.headings.bookingDetails')

@if (!is_null($products)) @endif {{--{{ dd($products) }}--}} @if (!is_null($products)) @foreach($products as $key => $product) @endforeach @else @endif
@lang('front.table.headings.serviceName') @lang('front.table.headings.unitPrice') @lang('front.table.headings.quantity') @lang('front.table.headings.subTotal') 
{{ $product['serviceName'] }} {{ $settings->currency->currency_symbol.$product['servicePrice'] }}
-
+
{{ $settings->currency->currency_symbol }}{{ $product['serviceQuantity'] * $product['servicePrice'] }}
@lang('front.table.emptyMessage')
@lang('front.summary.cart.heading.cartTotal')
{{--
--}}
  • @lang('front.summary.cart.subTotal')
  • @if(!is_null($tax))
  • {{ $tax->tax_name }} ({{ $tax->percent }}%):
  • @endif @if(!is_null($couponData))
  • @lang('app.discount') ({{ $couponData[0]['title'] }}): -{{ $settings->currency->currency_symbol }}{{ $couponData['applyAmount'] }}
  • @endif
  • @lang('front.summary.cart.totalAmount'):
@if (!is_null($products)) @endif
@endsection @push('footer-script') @endpush