@extends('admin.layout') @section('title', 'Inventario - Admin IMOZA') @section('header', 'Inventario') @section('content') @if($lowStock->isNotEmpty())

⚠️ Productos con stock bajo

@foreach($lowStock as $p) {{ $p->name }} ({{ $p->stock }} {{ $p->unit }}) @endforeach
@endif

Movimientos de Inventario

@forelse($movements as $m) @empty @endforelse
Fecha Producto Tipo Cantidad Referencia Usuario
{{ $m->created_at->format('d/m/Y H:i') }} {{ $m->product->name ?? 'N/A' }} @php $colors = ['entry' => 'bg-green-100 text-green-600', 'exit' => 'bg-red-100 text-red-600', 'adjustment' => 'bg-yellow-100 text-yellow-600']; @endphp @php $labels = ['entry' => 'Entrada', 'exit' => 'Salida', 'adjustment' => 'Ajuste']; @endphp {{ $labels[$m->type] ?? $m->type }} {{ $m->quantity }} {{ $m->reference ?: '-' }} {{ $m->user->name ?? '-' }}
No hay movimientos registrados.
{{ $movements->links() }}
@endsection