@extends('frontend.template-1.partials.master') @section('content') @include('frontend.template-1.breadcrumb.breadcrumb')
@csrf @if ($singleProduct->sale_type == 1) @else @endif

{{ translate('Billing Details') }}

@error('billing_first_name') {{ $message }} @enderror
@error('billing_last_name') {{ $message }} @enderror
@error('billing_address') {{ $message }} @enderror
@error('billing_country_id') {{ $message }} @enderror
@error('billing_state_id') {{ $message }} @enderror
@error('billing_city_id') {{ $message }} @enderror
@error('billing_post_code') {{ $message }} @enderror
@error('billing_phone') {{ $message }} @enderror
@error('billing_email') {{ $message }} @enderror

{{ translate('Are You Ship to a Different Address') }}?

@error('shipping_first_name') {{ $message }} @enderror
@error('shipping_last_name') {{ $message }} @enderror
@error('shipping_address') {{ $message }} @enderror
@error('shipping_country_id') {{ $message }} @enderror
@error('shipping_state_id') {{ $message }} @enderror
@error('shipping_city_id') {{ $message }} @enderror
@error('shipping_post_code') {{ $message }} @enderror
@error('shipping_phone') {{ $message }} @enderror
@error('shipping_email') {{ $message }} @enderror
{{ translate('Order Summary') }}
  • {{ $singleProduct->name }}
    {{ $singleProduct->name }}
    @if ($singleProduct->sale_type == 1) {{ translate('Quantity') . ': ' . $singleProduct->quantity }} {{ translate('Bid Price') . ': ' . currency_symbol() . $price }} @else {{ translate('Quantity') . ': ' . $quantity }} {{ translate('Price') . ': ' . currency_symbol() . $price }} @endif
@php $price = (float) ($price ?? 0); $minDeposit = (float) ($singleProduct->min_deposit ?? 0); $taxRate = (float) (get_setting('tax_rate') ?? 0); if ($singleProduct->sale_type == 1) { if ($singleProduct->min_deposit_type == 1) { $main_amount = ($price * $minDeposit) / 100; } else { $main_amount = $minDeposit; } } else { $main_amount = $price; } $tax_amount = ($main_amount * $taxRate) / 100; $total_amount = $main_amount + $tax_amount; @endphp
@if ($singleProduct->sale_type == 1) {{ translate('Minimum Deposit') }}@else{{ translate('Total') }} @endif {{ currency_symbol() . number_format($main_amount, 2) }}
{{ translate('Tax') }} ({{ get_setting('tax_rate') . '%' }}) {{ currency_symbol() . number_format($tax_amount, 2) }}
Total ( tax incl.) {{ currency_symbol() . number_format($total_amount, 2) }}
    @if ($payment_methods->count() > 0) @foreach ($payment_methods as $payment_method) @if ($payment_method->id == 1)
  • {{ translate('If there is insufficient balance please') }}

  • @else
  • @endif @endforeach @else
  • {{ translate('No Payment Method Found') }}

  • @endif
{{ translate('Select Your Payment Method') }}
Stripe
{{ translate('Please correct the errors and try again') }}.
@include('frontend.template-1.partials.payment_modal')
@push('js') @endpush @endsection