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

@lang('front.headings.payment')

@lang('front.summary.checkout.heading.bookingSummary')
@if ($booking->deal_id=='')
  • @lang('front.bookingDate'): {{ $booking->date_time }}
  • @lang('front.bookingTime'): {{ $booking->date_time }}
  • @lang('front.amountToPay'): {{ currencyFormatter($booking->amount_to_pay) }}
  • @lang('app.employee'): @if (!empty($emp_name)) {{ $emp_name }} @else None @endif
@else
  • @lang('app.deal') @lang('app.name'): {{$booking->deal->title}}
  • @lang('app.amount'): {{ currencyFormatter($booking->amount_to_pay) }}
@endif
@if($credentials->show_payment_options == 'show')
@lang('front.paymentMethod')
@if($credentials->stripe_status == 'active' && $booking->amount_to_pay > 0) @lang('front.buttons.stripe') @endif @if($credentials->paypal_status == 'active' && $booking->amount_to_pay > 0) @lang('front.buttons.paypal') @endif @if($credentials->paystack_status == 'active' && $booking->amount_to_pay > 0) @lang('front.buttons.paystack') @endif @if($credentials->razorpay_status == 'active' && $booking->amount_to_pay > 0) @lang('front.buttons.razorpay') @endif @if($credentials->offline_payment == 1 && $booking->booking_type != 'online') @lang('front.buttons.offlinePayment') @endif
@else
@lang('front.paymentMethod')
@endif
@endsection @push('footer-script') @if($credentials->razorpay_status == 'active') @endif @if($credentials->stripe_status == 'active') @endif @if ($credentials->paystack_status == 'active') @endif @endpush