@extends('layouts.web') @section('main')
@csrf
@foreach ($productos as $item) @endforeach
Imagen Producto Precio Tallas Cantidad Subtotal Eliminar
{{  $item->nombre  }} {{ $item->nombre }} ${{ number_format($item->precio,'2','.',',') }} @foreach ($carrito->where('id',$item->id) as $itemt)
@if (isset($sobrepedido)) @else @endif
@endforeach
0 $0.00 @if (isset($sobrepedido)) @else @endif
Total del Carrito
{{-- --}}
Total de productos 0
Peso total 0
Total de envío $0.00
Total $0.00
@endsection @section('scripts') @parent @if (!Auth::guard('cliente')->check()) @endif @endsection