@extends('layouts.app') @section('title', 'Ajustes de Inventario') @section('page-title', 'Ajustes de Inventario — Logística') @section('breadcrumb') @endsection @section('content')

Ajustes de Inventario

@hasanyrole('super-admin|jefe-logistica') Nuevo Ajuste @endhasanyrole
@forelse($movimientos as $mov) @empty @endforelse
Fecha Lote Producto Almacén Cantidad Costo Unit. Motivo Usuario
{{ $mov->created_at->format('d/m/Y H:i') }} {{ $mov->lote?->numero ?? '—' }} {{ $mov->producto->nombre }} {{ $mov->almacenOrigen?->nombre ?? '—' }} {{ number_format($mov->cantidad, 3) }} S/ {{ number_format($mov->costo_unitario, 4) }} {{ Str::limit($mov->observacion ?? '—', 60) }} {{ $mov->usuario?->name ?? '—' }}
No hay ajustes registrados.
{{ $movimientos->links() }}
@endsection