@extends('layouts.front-layout') @section('title') CheckOut @endsection @section('content') @php $total = 0; @endphp

Checkout

{{--

Miss Thang

--}}

CONTACT

Have an account? Log in
@csrf
@error('email') {{ $message }} @enderror

SHIPPING ADDRESS

@error('state') {{ $message }} @enderror
@error('first_name') {{ $message }} @enderror
@error('last_name') {{ $message }} @enderror
@error('address') {{ $message }} @enderror
@error('city') {{ $message }} @enderror
@error('zip_code') {{ $message }} @enderror
@error('phone_number') {{ $message }} @enderror
@if (!Auth::check())
@endif
{{-- @auth --}}
@if (isset($cart_data)) @foreach ($cart_data as $data)
img
{{ $data['item_name'] ?: '' }}

Commissions available. Will not be exactly the same. All original work..

@php if ($data['item_quantity']) { $total = $total + $data['item_quantity'] * $data['item_price']; } else { $total = $total + $data['item_price']; } @endphp @if ($data['item_quantity']) $ {{ number_format($data['item_quantity'] * $data['item_price'], 0) }} @else $ {{ number_format($data['item_price']), 0 }} @endif
@endforeach @endif @if (isset($printifyCart)) @foreach ($printifyCart as $printify)
img
{{ $printify['product_name'] ?: '' }}

Commissions available. Will not be exactly the same. All original work..

@php if ($printify['quantity']) { $total = $total + $printify['quantity'] * $printify['price']; } else { $total = $total + $printify['price']; } @endphp @if ($printify['quantity']) $ {{ number_format($printify['quantity'] * $printify['price'], 0) }} @else $ {{ number_format($printify['price']), 0 }} @endif
@endforeach @endif @if (isset($printFullcart)) @foreach ($printFullcart as $printful)
img
{{ $printful['product_name'] ?: '' }}

Commissions available. Will not be exactly the same. All original work..

@php if ($printful['quantity']) { $total = $total + $printful['quantity'] * $printful['price']; } else { $total = $total + $printful['price']; } @endphp @if ($printful['quantity']) $ {{ number_format($printful['quantity'] * $printful['price'], 0) }} @else $ {{ number_format($printful['price']), 0 }} @endif
@endforeach @endif

Subtotal Shipping

$ {{ number_format($total) ?? '00' }}
Calculated at next step

Discount

0.00
  • Total
  • $ {{ number_format($total) ?: '' }}
@endsection