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

@lang('front.headings.bookingDetails')

@if (!is_null($products)) @endif @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'] }}
Cart is empty. Please add some products to continue.
@lang('front.summary.cart.heading.cartTotal')
  • @lang('front.summary.cart.subTotal')
  • @if(!is_null($tax))
  • {{ $tax->tax_name }} ({{ $tax->percent }}%):
  • @endif
  • @lang('front.summary.cart.totalAmount'):
@if (!is_null($products)) @endif
@endsection @push('footer-script') @endpush