@extends('front.layouts.app') @section('content') @include('front.layouts.app-header')
  • 1
  • 2
  • 3
  • 4

Billing address

Shipping address

{{--

Select Shipping methods

--}}

Pick-up in Store

FREE

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

  • {{ config('constant.CURRENCY_SIGN') }}{{ Cart::total() }}
  • {{ config('constant.CURRENCY_SIGN') }} 0.00
  • {{ config('constant.CURRENCY_SIGN') }} {{ Cart::total() }}
@include('front.layouts.app-footer', ['title' => 'Checkout']) @endsection @section('custom-js') @endsection