@extends('layouts.app') @section('title', 'Mouvements de Stock') @section('breadcrumb')
| Date | Article | Type | Quantité | Raison | Référence | Actions |
|---|---|---|---|---|---|---|
| {{ $movement->date->format('d/m/Y') }} | {{ $movement->stockItem->name }} | @if($movement->type === 'entree') Entrée @elseif($movement->type === 'sortie') Sortie @else Ajustement @endif | {{ $movement->quantity }} {{ $movement->stockItem->unit }} | {{ Str::limit($movement->reason, 30) }} | {{ $movement->reference ?? '-' }} | @if($canManage) @endif |
| Aucun mouvement enregistré. | ||||||