@extends('layouts.guest-landing') {{-- Use public layout --}} @section('title', 'Your Shopping Cart') @section('content') {{-- Alpine component for status check --}}
For Campaign: {{ $group['campaign_title'] ?? 'Unknown Campaign' }}
| Product | Price | Quantity | Subtotal | Remove |
|---|---|---|---|---|
|
@if ($item->attributes->image_url)
{{ $item->name }}
|
{{-- Price Cell --}}
${{ number_format($item->price, 2) }} | {{-- Quantity Cell --}}{{ $item->quantity }} | {{-- Subtotal Cell --}}${{ number_format($item->getPriceSum(), 2) }} | {{-- Remove Action Cell --}}
|
{{ $donationItem->name }}
|
${{ number_format($donationItem->price, 2) }} | {{ $donationItem->quantity }} | ${{ number_format($donationItem->getPriceSum(), 2) }} |
Grand Total: ${{ number_format($cartTotal, 2) }}
{{-- Updated Note Text --}}Note: