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

{{ __($checkoutPage?->title) }}

@csrf

{{ __('Basic Info') }}

@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 Info') }}

@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

{{ __('Shipping Info') }}

@if (json_decode($checkoutPage?->shipping_info)) @foreach (json_decode($checkoutPage?->shipping_info) ?? [] as $shippingInfo) @if ($shippingInfo->type == 'text' || $shippingInfo->type == 'number' || $shippingInfo->type == 'email')
@elseif ($shippingInfo->type == 'textarea')
@endif @endforeach @endif

{{ __('Shipping Method') }}

@if ($checkoutPage?->shipping_method == SHIPPING_METHOD_FREE)

{{ __('We deliver free to save you money') }}

@else

{{ __('We take your deliveries seriously.') }}

@endif

{{ __('Payment Information') }}

    @foreach ($gateways as $key => $gateway) @if (in_array($gateway->id, json_decode($checkoutPage?->payment) ?? [])) @endif @endforeach

{{ __('Purchase Details') }}

{{ __('Sass') }}

  • {{ __('Plan Name') }}:

    {{ $plan->name }}

  • {{ __('Plan Code') }}:

    {{ $plan->code }}

  • {{ __('Quantity') }}:

    {{ __('01') }}

  • {{ __('Price') }}:

    {{ showPrice($plan->price) }}

  • {{ __('Shipping Charge') }} :

    {{ showPrice($plan->shipping_charge) }}

  • {{ __('Setup Fee') }}:

    {{ showPrice($plan->setup_fee) }}

  • {{ __('Discount') }}:

    0

  • {{ __('Total') }}:

    {{ showPrice($plan->price + $plan->setup_fee + $plan->shipping_charge) }}

    {{ __('Bank Deposit') }}

    @if($plan->details != null)

    {{ __('Plan Details') }}

    {!! $plan->details !!}

    @endif
    @endsection @push('style') @endpush @push('script') @endpush