@extends('layouts.app') @section('content')

Your Cart

@if($cartItems->isEmpty())

Your cart is empty.

@else
@foreach($cartItems as $item) @endforeach
Item Quantity Price Total Actions
{{ $item->categoryPackage ? $item->categoryPackage->name : ($item->category ? $item->category->name : 'N/A') }} {{ $item->quantity }} {{ $item->price ? '$' . number_format($item->price, 2) : 'Call for Pricing' }} {{ $item->price ? '$' . number_format($item->price * $item->quantity, 2) : 'Call for Pricing' }}
@csrf @method('DELETE')
@if($cartItems->whereNotNull('price')->count() > 0)

Checkout

@csrf
@error('coupon_code')

{{ $message }}

@enderror
@error('payment_method')

{{ $message }}

@enderror
@endif @endif
@endsection