@extends('layouts.main') @section('content')
@csrf @method('post')
@if (!$productIsFree)

Payment Methods

@foreach ($paymentGateways as $gateway)
@endforeach
@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($discountedprice) }}
    • {{ __('Tax') }} @if ($taxpercent > 0) ({{ $taxpercent }}%): @endif + {{ $product->formatToCurrency($taxvalue) }}
      @if ($discountpercent && $discountvalue)
      {{ __('Discount') }} ({{ $discountpercent }}%): -{{ $product->formatToCurrency($discountvalue) }}
      @endif
      {{ __('Total') }} {{ $product->formatToCurrency($total) }}
@endsection