@extends('layouts.app') @section('content')

Movimientos de Inventario

@if(session('success'))

{{ session('success') }}

@endif @if($errors->any())
@foreach ($errors->all() as $error)

{{ $error }}

@endforeach
@endif
@foreach($movements as $movement) @endforeach
Fecha Producto Tipo Cantidad Stock Resultante Usuario
{{ $movement->created_at->format('d/m/Y H:i') }} {{ $movement->product->name }} {{ ucfirst($movement->type) }} {{ $movement->quantity }} {{ $movement->current_stock_snapshot }} {{ $movement->user->name }}
{{ $movements->links() }}
@endsection