@extends('frontLayout.frontlayout') @section('content') @php use App\Models\Admin\Settings; use App\Models\Frontend\ContentManagement; $lang = session('language') ? session('language') : 'en'; $paymentTitle = ContentManagement::getLike('payment_title','sellbusiness_payment'); $paymentSubTitle = ContentManagement::getLike('payment_sub_title','sellbusiness_payment'); $paymentDescription = ContentManagement::getLike('payment_description','sellbusiness_payment'); @endphp

3/4

{{isset($paymentSubTitle) && !empty($paymentSubTitle) ? __dl($paymentSubTitle,'payment_sub_title'): "Complete your payment"}}

{{isset($paymentDescription) && !empty($paymentDescription) ? __dl($paymentDescription,'payment_description'): "-"}}

{{-- @include('frontend.partials.flash_messages') --}}
{{ csrf_field(); }}
@if(isset($cards) && count($cards) > 0) @include('frontend.sellBusiness.partials.cards') @else @include('frontend.sellBusiness.partials.addCards') @endif

{{__('paymentSellBusiness.transactions')}}

{{__('paymentSellBusiness.subtotal')}}

{{isset($listingCharges) && $listingCharges['price'] ? Settings::get('currency_symbol').''.$listingCharges['price'] : ''}}

{{__('paymentSellBusiness.grand_total')}}

{{isset($listingCharges) && $listingCharges['grand_total'] ? Settings::get('currency_symbol').''.$listingCharges['grand_total'] : ''}}

{{__('paymentSellBusiness.payment_detail')}}

{{__('paymentSellBusiness.subtotal')}}

{{isset($listingDueDiligenceCharges) && $listingDueDiligenceCharges['price'] ? Settings::get('currency_symbol').''.$listingDueDiligenceCharges['price'] : ''}}

{{__('paymentSellBusiness.grand_total')}}

{{isset($listingDueDiligenceCharges) && $listingDueDiligenceCharges['grand_total'] ? Settings::get('currency_symbol').''.$listingDueDiligenceCharges['grand_total'] : ''}}

@include('frontend.sellBusiness.partials.paymentSuccess'); @endsection