@forelse($movements as $index => $movement) @empty @endforelse
# Producto Lote Orden aplicado: Cliente Orden aplicado: Servicios Orden aplicado: Fecha Técnico/Administrativo Cantidad Acciones
{{ ++$index }} {{ $movement->product->name ?? '-' }} {{ $movement->lot->registration_number ?? '-' }} {{ $movement->order->customer->name ?? '-' }} {{ implode(', ', $movement->order->services->pluck('name')->toArray()) }} {{ date('d/m/Y', strtotime($movement->order->programmed_date)) }} {{ $movement->technician ? $movement->technician->user->name : $movement->order->customer->administrative->name ?? '-' }} {{ $movement->amount ? $movement->amount . ' ' . $movement->product->metric->value : '-' }} {{-- Imprimir --}} @if(auth()->user()->work_department_id == 1) {{ __('buttons.delete') }} @endif
No hay movimientos en este almacén.
{{ $movements->links('pagination::bootstrap-5') }}