@extends('layouts.guest-landing') {{-- Use public layout --}}
@section('title', __('checkout.title'))
@push('styles')
{{-- Basic styling for Stripe Element container --}}
@endpush
@section('content')
@endsection
@push('scripts')
{{-- Faker Script for Testing (only when FAKER_ENABLED=true) --}}
@php
$fakerEnabled = env('FAKER_ENABLED', false);
$isFakerEnabled = $fakerEnabled === 'true' || $fakerEnabled === true;
@endphp
@if ($isFakerEnabled)
@else
@endif
{{-- Stripe Payment Integration with PO Numbers --}}
@if (($activePaymentGateway ?? 'stripe') === 'stripe' && !empty($stripePublicKey) && !empty($paymentIntentClientSecret))
{{-- Till Payments Integration with PO Numbers --}}
@elseif (($activePaymentGateway ?? 'stripe') === 'till' && !empty($tillPublicKey))
@endif
@endpush