@extends('front.layouts.app') @push('title', __('Checkout')) @section('content')
@csrf
{{ __('Billing Details') }}
{{ __('Order Summary') }}
@foreach($cart['items'] as $item)
{{ $item['qty'] }} x "{{ $item['name'] }}"
{{ config('app.currency_symbol') }}{{ money($item['price'] * $item['qty']) }}
@endforeach

{{ __('Subtotal') }}:
{{ config('app.currency_symbol') }}{{ money($cart['totals']['subtotal']) }}
@if($cart['totals']['discount'] > 0)
{{ __('Discount') }}:
-{{ config('app.currency_symbol') }}{{ money($cart['totals']['discount']) }}
@endif
{{ __('Total') }}:
{{ config('app.currency_symbol') }}{{ money($cart['totals']['total']) }}
{!! Cache::get('agree_message') !!}
@if (Cache::get('google_recaptcha_sitekey') && Cache::get('google_recaptcha_secretkey')) @endif
@endsection