@extends('layouts.app') @section('title') Checkout @endsection @section('content')

Checkout

@if ($cart->subtotal == 0)

There are nothing in your shopping bag to checkout.

@else

Please ensure all the details are accurate and correct.

@endif
@if ($cart->subtotal > 0)
@guest @endif
@guest
Credit Card & Online Bank Transfer

You will be redirected to Johor Pay Payment Gateway page upon clicking "Place Order" in Order Review.
Please do not close or refresh the page until the payment has been completed.

@include('partials.checkout_items')
@else @include('partials.checkout_items')
@endif
Order Summary
  • Discount {{ config('app.currency') }} 0.00
  • Total {{ config('app.currency') }} {{ $cart->total }} Inclusive SST
Discount
@endif
@endsection @section('js') @endsection