@extends('layouts.cliente.app') @section('title', 'Meu Carrinho') @section('content') @php $discountRate = 0.05; @endphp
{{-- HEADER --}}

🛒 Meu Carrinho

@if($cart->items->count() > 0) {{-- TABLE --}}
@foreach($cart->items as $item) @php $product = $item->product; $basePrice = $product->price; $price = $basePrice * (1 - $discountRate); $stock = $product->quantity; @endphp {{-- PRODUTO --}} {{-- PREÇO --}} {{-- QTD --}} {{-- SUBTOTAL --}} {{-- DELETE --}} @endforeach
Produto Preço Qtd Subtotal
{{ $product->name }}
Stock: {{ $stock }}
{{ number_format($price,2,',','.') }} Kz
{{ number_format($item->quantity * $price,2,',','.') }} Kz
@csrf @method('DELETE')
{{-- TOTAL --}}

Total: {{ number_format($total,2,',','.') }} Kz

Desconto de 5% aplicado automaticamente
@else
Carrinho vazio
@endif
{{-- ================= CHECKOUT MODAL ================= --}} {{-- ================= JS FUNCIONAL ================= --}} {{-- ================= STYLE ================= --}} @endsection