@extends('site.layouts.app') @section('title', 'CDS - SISTEMAS') @section('topbar') @include('site.partials.topbar') @endsection @section('navbar')

Meu Carrinho

Home

-

Meu Carrinho

@php $total = 0; @endphp @foreach ($carts->items() as $cart) @php $total += $cart->product['preco']*$cart->qtd; @endphp @csrf() @method('PATCH') @endforeach
Producto Preço Quantidade Total Atualizar Remover
{{ $cart->product['nome'] }} {{ $cart->product['preco'] }}
{{ $cart->product['preco']*$cart->qtd }}
@csrf() @method('DELETE')

Resumo do carrinho

Subtotal
{{ $total }}
Entrega
{{ $entrega}}
@endsection @section('products') @endsection @section('footer') @include('site.partials.footer') @endsection