{{ ++$index }} |
{{ $lot->registration_number }} |
{{ $lot->product->name ?? '-' }} |
{{ $lot->warehouse->name ?? '-' }} |
{{ number_format($lot->amount, 2) }}
{{ $lot->product->metric->value }}
|
{{ $lot->remainingAmount() }}
{{ $lot->product->metric->value }}
|
@if ($lot->expiration_date)
@if ($isExpired)
{{ date('d/m/Y', strtotime($lot->expiration_date)) }} (CADUCADO)
@else
{{ date('d/m/Y', strtotime($lot->expiration_date)) }}
@endif
@else
-
@endif
|
{{ date('d/m/Y', strtotime($lot->start_date)) . ' - ' . date('d/m/Y', strtotime($lot->end_date)) }}
|
@if (auth()->user()->work_department_id == 1)
Editar
Eliminar
|
@endif
@empty