@extends('layouts.front') @section('content') @lang('front.headings.payment') @lang('front.summary.checkout.heading.bookingSummary') @lang('front.bookingDate'): {{ $booking->date_time->format('l, F jS') }} @lang('front.bookingTime'): {{ $booking->date_time->format($settings->time_format) }} @lang('front.amountToPay'): {{ $settings->currency->currency_symbol.$booking->amount_to_pay }} @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->razorpay_status == 'active' && $booking->amount_to_pay > 0) @lang('front.buttons.razorpay') @endif @if($credentials->offline_payment == 1) @lang('front.buttons.offlinePayment') @endif @lang('front.navigation.toAccount') @endsection @push('footer-script') @if($credentials->stripe_status == 'active') @endif @if($credentials->razorpay_status == 'active') @endif @endpush