@extends('layouts.frontend') @section('seo') {{ $systemInfo->name??null }} | Checkout @endsection @section('content')

Billing Details

Shipping Address

Select the address that matches your card or payment method.

Choose Shippment Method

All Shippment Method.

Payment Method

All transactions are secure and encrypted.

Order Summary

    @foreach(Cart::content() as $item)
  • @if($item->model->photos->count() > 0)
    @else
    @endif

    {{ $item->model->name }}

    Quantity : {{ $item->qty }}

    Condition : {{ $item->model->product_condition }}

    ${{ $item->subtotal }}

  • @endforeach

Price ({{Cart::content()->count()}} items)

${{ $newSubtotal }}

@php $tax_percent = config('constants.options.tax'); $tax_val = $newSubtotal/100 * $tax_percent; @endphp

Tax

${{ $tax_val }}

@php $orderTotal = (float) $newSubtotal + (float) $tax_val; @endphp

Total:

${{ $orderTotal }}

@endsection @section("css") @endsection @section("scripts") @endsection