@extends('front.layouts.app') @push('title', __('Checkout')) @section('content')
@csrf @if(request()->customer_answers) @foreach(request()->customer_answers as $customer_answer) @endforeach @endif
{{ __('Billing Details') }}
{{ __('Order Summary') }}
{{ $qty }} x "{{ $product->name }}" {{ $qty }}x{{ config('app.currency_symbol') }}{{ money($product->price) }}


{{ __('Subtotal') }}:
{{ config('app.currency_symbol') }}{{ money($product->price * $qty) }}
@if ($product->discount_more) @if ($qty > explode(':', $product->discount_more)[0])
{{ __('Discount') }}(%{{ explode(':', $product->discount_more)[1] }}):
-{{ config('app.currency_symbol') }}{{ money($product->price * $qty - $total) }}
@endif @endif
{{ __('Coupon Code') }}
{{ __('Coupon Discount') }}
{{ __('Total') }}:
{{ config('app.currency_symbol') }}{{ money($total) }}
{!! Cache::get('agree_message') !!}
@if (Cache::get('google_recaptcha_sitekey') && Cache::get('google_recaptcha_secretkey')) @endif
@endsection @push('js') @endpush