@extends('layouts.web') @section('main')
@csrf
@foreach ($carrito as $item) @endforeach
{{ $item->nombre }}
@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
@foreach ($tallas->where('producto_id',$item->id) as $talla)
T-{{ $talla->talla }}
@endforeach
${{ number_format($item->precio,'2','.',',') }} {{  $item->nombre  }}
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