@extends('layouts.app') @section('title', 'Inventaires') @section('breadcrumb', 'Stock / Inventaires') @section('content')
@forelse($inventaires as $inv) @empty @endforelse
Numéro Date Emplacement Famille Lignes Statut Actions
{{ $inv->numero }} {{ $inv->date->format('d/m/Y') }} {{ $inv->emplacement?->label ?? 'Tout' }} {{ $inv->famille?->label ?? 'Tout' }} {{ $inv->lignes_count ?? '—' }} {{ ucfirst($inv->statut) }}
@if($inv->statut !== 'cloture') @endif @if($inv->statut !== 'cloture')
@csrf @method('PATCH')
@endif
Aucun inventaire
@if($inventaires->hasPages())
{{ $inventaires->links() }}
@endif
@endsection