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

Entrega

Home

-

Entrega

@method('PUT') @csrf()

Dados de Entreaga

Pedido Total

Productos
@php $total = 0; @endphp @foreach ($carts->items() as $cart) @php $total += $cart->product['preco']*$cart->qtd; @endphp

{{ $cart->product['nome'] }}

{{ $cart->product['preco']*$cart->qtd }}

@endforeach
Subtotal
{{ $total }}
Entrega
{{ $entrega }}

Forma de pagamento

@endsection @section('products') @endsection @section('footer') @include('site.partials.footer') @endsection