@extends($active_theme) @section('title') {{ $service->name }} {{ $service->seo_title }} @endsection @section('meta') @endsection @section('frontend-content')
@php $coupon_discount = 0.00; if(Session::get('coupon_code') && Session::get('offer_percentage')) { $offer_percentage = Session::get('offer_percentage'); $coupon_discount = ($offer_percentage / 100) * $extra_services->total; } @endphp
  • 1 {{__('user.Service')}}
  • 2 {{__('user.Information')}}
  • 3 {{__('user.Confirmation')}}
booking images

{{__('user.Booking Information')}}

{{__('user.Name')}}: {{ html_decode($customer->name) }}

{{__('user.Email')}}: {{ html_decode($customer->email) }}

{{__('user.Phone')}}: {{ html_decode($customer->phone) }}

{{__('user.Address')}}: {{ html_decode($customer->address) }}

{{__('user.Date')}}: {{ $extra_services->date }}

{{__('user.Post Code')}}: {{ html_decode($customer->post_code) }}

{{__('user.Order Note')}}: {{ html_decode($customer->order_note) }}

    @if ($stripe->status == 1)
  • payment img
  • @endif @if ($paypal->status == 1)
  • payment img
  • @endif @if ($razorpay->status == 1)
  • payment img
  • @csrf @php $payable_amount = ($total_price - $coupon_discount) * $razorpay->currency_rate; $payable_amount = round($payable_amount, 2); @endphp
    @endif @if ($flutterwave->status == 1)
  • payment img
  • @endif @if ($mollie->mollie_status ==1)
  • payment img
  • @endif @if ($paystack->paystack_status == 1)
  • payment img
  • @endif @if ($instamojoPayment->status == 1)
  • payment img
  • @endif @if ($bankPayment->status == 1)
  • payment img
  • @endif
{{-- start stripe payment --}} {{-- end stripe payment --}} {{-- start bank payment modal --}} {{-- end bank payment --}} {{-- start stripe payment --}} {{-- end stripe payment --}} {{-- start flutterwave payment --}} @php $payable_amount = ($total_price - $coupon_discount) * $flutterwave->currency_rate; $payable_amount = round($payable_amount, 2); @endphp {{-- end flutterwave payment --}} {{-- paystack start --}} @php $public_key = $paystack->paystack_public_key; $currency = $paystack->paystack_currency_code; $currency = strtoupper($currency); $ngn_amount = ($total_price - $coupon_discount) * $paystack->paystack_currency_rate; $ngn_amount = $ngn_amount * 100; $ngn_amount = round($ngn_amount); @endphp @endsection