@extends('front.include.app') @section('content')

Cart Page

Confirm Your Purchase

@forelse($cartItems as $crt)

{{ $crt->name }}

@if($crt->options->size != null)
Size: {{ App\Helpers\SizeHelper::getSize($crt->options->size) }}
@endif
Original Price: USD {{ $crt->price ?? '' }}
USD {{ $crt->price * $crt->qty }}
@csrf @method('PUT')
+ -
@empty @endforelse

Total Price: USD {{ Cart::subtotal() }}

@if(Cart::subtotal() > 0) @endif
@endsection @section('script') {{-- --}} @endsection