@php
$cantidad_por_entregar = $producto->pivot->cantidad - $producto->pivot->cantidad_entregada;
@endphp
@if ($cantidad_por_entregar >= 0)
@else
COMPLETO
@endif
|
|
{{ $producto->nombre_producto }}
|
@if($producto->stock)
{{ $producto->stock }}
@else
0
@endif
|
{{ $producto->pivot->cantidad }}
|
{{ $producto->pivot->cantidad_entregada }}
|
{{ $producto->pivot->created_at }}
|
@endforeach