@extends('web.profile.profile-master') @section('checkout-content')

{{ __('Checkout') }}

@csrf
{{ __('User Information') }}

{{ $boostPlan ? $boostPlan->sustain_days : 'Select Plan' }} {{ __('Days') }}

{{ $boostPlan ? ($boostPlan->discount_amount ? currencyFormat($boostPlan->discount_amount) : currencyFormat($boostPlan->payable_amount)) : '0.00' }}
{{ $boostPlan ? $boostPlan->name : 'Select Plan' }}
{{ __('Service Summary') }}
{{ __('Service Price') }} {{ currencyFormat($boostPlan ? ($boostPlan->discount_amount ? number_format($boostPlan->discount_amount, 2) : number_format($boostPlan->payable_amount, 2)) : '0.00') }}
{{ __('Tax ') }} ( @if (($taxData->type ?? 'percentage') === 'percentage') {{ $taxData->value ?? 0 }}% @else {{ number_format($taxData->value ?? 0, 2) }} @endif ) 0.00
{{ __('Total') }} {{ currencyFormat($boostPlan ? number_format($boostPlan->payable_amount, 2) : '0.00') }}
{{ __('Payment Method') }}
{{-- Hidden input to store selected payment method ID --}}
@foreach ($paymentGateways as $gateway) @if ($gateway->is_active) @endif @endforeach
Or
@endsection @push('script') @php use App\Repositories\SettingRepository; $currencySetting = SettingRepository::getCurrencySetting(); $currencySymbol = $currencySetting?->symbol ?? '$'; $currencyPosition = $currencySetting?->position ?? 'left'; @endphp {{-- calculation tax and total --}} {{-- --}} {{-- modal --}} {{-- auto pay show-hide --}} {{-- open open popup window --}} @endpush