@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->isoFormat('dddd, MMMM Do') }} @lang('front.bookingTime'): {{ $booking->date_time->format($settings->time_format) }} @lang('front.amountToPay'): {{ $settings->currency->currency_symbol.$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'): {{ $settings->currency->currency_symbol.$booking->amount_to_pay }} @endif @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