@extends('frontend.layouts.app') @push('title') {{ __(@$pageTitle) }} @endpush @section('content')
Logo

Complete your purchase securely

@csrf
{{ __('Basic Information') }}
@if (json_decode($checkoutPage?->basic_info)) @foreach (json_decode($checkoutPage?->basic_info) ?? [] as $basicInfo) @if ($basicInfo->type == 'text' || $basicInfo->type == 'number' || $basicInfo->type == 'email')
@elseif ($basicInfo->type == 'textarea')
@endif @endforeach @endif
{{ __('Billing Information') }}
@if (json_decode($checkoutPage?->billing_info)) @foreach (json_decode($checkoutPage?->billing_info) ?? [] as $billingInfo) @if ($billingInfo->type == 'text' || $billingInfo->type == 'number' || $billingInfo->type == 'email')
@elseif ($billingInfo->type == 'textarea')
@endif @endforeach @endif
{{ __('Bank Deposit') }}
{{ __('Order Summary') }}
{{ $plan->name }}
{{ __('Plan Code') }} {{ $plan->code }}
{{ __('Quantity') }} 1
{{ __('Price') }} {{ showPrice($plan->price) }}
{{ __('Setup Fee') }} {{ showPrice($plan->setup_fee) }}
{{ __('Discount') }} $0.00
{{ __('Total') }} {{ showPrice($plan->price + $plan->setup_fee + $plan->shipping_charge) }}
@if($plan->details != null)
{{ __('Plan Details') }}
{!! $plan->details !!}
@endif
@endsection @push('style') @endpush @push('script') @endpush