@extends('layouts.web') @section('main')
@csrf
@foreach ($carrito as $item) @endforeach
Imagen Producto Precio Tallas Cantidad Subtotal Eliminar
{{  $item->nombre  }} {{ $item->nombre }} ${{ number_format($item->precio,'2','.',',') }} @foreach ($tallas->where('producto_id',$item->id) as $talla)
T-{{ $talla->talla }}
@php $producto_actual = \App\Models\Productos\CarritoProductos::select('cantidad')->where([ ['carrito_id', $talla->carrito_id], ['talla', $talla->talla] ])->first(); @endphp
@endforeach
0 $0.00
Total del Carrito
Total de productos 0
Total de envío $0.00
Total $0.00
@endsection @section('scripts') @parent @if (!Auth::guard('cliente')->check()) @endif @endsection