@extends('theme::layouts.app') @section('content')
@csrf

{{ content('checkout','billing_title') }}

{{ content('checkout','order_title') }}

@php $ecom_settings=LpOption('ecommerce'); @endphp
@foreach(Cart::content() as $cart) @endforeach @php $str=str_replace(',', '', Cart::total()); @endphp
{{ __('Product') }} {{ __('Total') }}
{{ $cart->name }} × {{ $cart->qty }} {{ $cart->total }}
{{ __('Cart Subtotal') }} {{ Cart::Subtotal() }}
{{ __('Tax') }} {{ Cart::tax() }}
{{ __('Shipping') }} {{ $ecom_settings->shipping }}
{{ __('Order Total') }}{{ number_format($str+$ecom_settings->shipping,2) }}

{{ content('checkout_quote','checkout_quote_title') }}

{{ content('checkout_quote','checkout_quote_description') }}

{{ content('checkout_quote','checkout_quote_button') }}
@php $basic_info=LpOption('system_basic_info'); @endphp @if(!empty($basic_info->gallary_input)) @php $gallery=explode(',', $basic_info->gallary_input); @endphp
@endif @endsection