@extends('front.layouts.app') @section('content') @include('front.layouts.app-header') 1 2 3 4 Billing address First name* Last name* Email* Telephone* Street name* ZIP/Postal Code* Please select zipcode @foreach ($zipcodes as $zipcode) zipcode_id == $zipcode->id ? 'selected' : '' }}> {{ $zipcode->code }} @endforeach Country* Please select country @foreach ($countries as $country) zipcode->country->id == $country->id ? 'selected' : '' }}> {{ $country->name }} @endforeach State / Province* Please select state @foreach ($billingState as $state) zipcode->state->id == $state->id ? 'selected' : '' }}> {{ $state->name }} @endforeach City * Please select city @foreach ($billingCities as $cities) zipcode->city->id == $cities->id ? 'selected' : '' }}> {{ $cities->name }} @endforeach Shipping address First name* Last name* Email* Telephone* Street name* ZIP/Postal Code* Please select zipcode @foreach ($zipcodes as $zipcode) zipcode_id == $zipcode->id ? 'selected' : '' }}> {{ $zipcode->code }} @endforeach Country* Please select country @foreach ($countries as $country) zipcode) && $shippingAddress->zipcode->country->id == $country->id ? 'selected' : '' }}> {{ $country->name }} @endforeach State / Province* Please select city @foreach ($shippingState as $state) zipcode->state->id == $state->id ? 'selected' : '' }}> {{ $state->name }} @endforeach City * Please select city @foreach ($shippingCities as $cities) zipcode->city->id == $cities->id ? 'selected' : '' }}> {{ $cities->name }} @endforeach {{-- Select Shipping methods --}} Pick-up in Store FREE Store Pickup Review your order Product Quantity Subtotal @foreach ($cartContents as $cart) @if ( !empty($cart->product->productsImageFirst->filename) && \Illuminate\Support\Facades\Storage::exists($cart->product->productsImageFirst->filename)) @else @endif {{ $cart->name }} {{ $cart->options->details['product_desc'] }} {{ $cart->qty }} {{ config('constant.CURRENCY_SIGN') }} {{ $cart->priceTotal }} @endforeach Proceed to checkout Items @if (isset($deal)) {{ Cart::instance('deal')->count() }} @else {{ Cart::count() }} @endif {{ config('constant.CURRENCY_SIGN') }}{{ Cart::total() }} Shipping Charges {{ config('constant.CURRENCY_SIGN') }} 0.00 Total{{ config('constant.CURRENCY_SIGN') }} {{ Cart::total() }} Place Order {{-- --}} {{-- Pay --}} Your order is under process, Please wait a while. @include('front.layouts.app-footer', ['title' => 'Checkout']) @endsection @section('custom-js') @endsection
Product
Quantity
Subtotal
{{ $cart->options->details['product_desc'] }}
{{ $cart->qty }}
{{ config('constant.CURRENCY_SIGN') }} {{ $cart->priceTotal }}