@extends('layouts.main') @section('content')
@csrf @method('post')
@if (!$productIsFree)
  • {{ __('Payment Methods') }}
    @foreach ($paymentGateways as $gateway)
    @endforeach
  • @if ($isCouponsEnabled) {{ __('Coupon') }}
    @error('coupon_code')
    {{ $message }}
    @enderror @endif
@endif

Checkout details

  • {{ __('Product details') }}
    • {{ __('Type') }} {{ strtolower($product->type) == 'credits' ? $credits_display_name : $product->type }}
    • {{ __('Amount') }} {{ $product->quantity }}
    • {{ __('Total Amount') }} {{ $product->quantity }}
  • {{ __('Description') }}
    {{ $product->description }}
  • {{ __('Pricing') }}
    • {{ __('Subtotal') }} {{ $product->formatToCurrency($product->price) }}
    • {{ __('Tax') }} @if ($taxpercent > 0) ({{ $taxpercent }}%): @endif + {{ $product->formatToCurrency($taxvalue) }}
      {{ __('Coupon Discount') }}
      @if ($discountpercent && $discountvalue)
      {{ __('Discount') }} ({{ $discountpercent }}%) -{{ $product->formatToCurrency($discountvalue) }}
      @endif
      {{ __('Total') }}
@endsection