@extends('site.layouts.app')
@section('title', 'CDS - SISTEMAS')
@section('topbar')
@include('site.partials.topbar')
@endsection
@section('navbar')
| Producto |
Preço |
Quantidade |
Total |
Atualizar |
Remover |
@php
$total = 0;
@endphp
@foreach ($carts->items() as $cart)
@php
$total += $cart->product['preco']*$cart->qtd;
@endphp
{{ $cart->product['nome'] }} |
{{ $cart->product['preco'] }} |
|
@endforeach
Subtotal
{{ $total }}
Entrega
{{ $entrega}}
@endsection
@section('products')
@endsection
@section('footer')
@include('site.partials.footer')
@endsection