@extends('layouts.admin')
@section('title', 'Inventaire')
@section('page-title', 'Stock')
@section('content')
Inventaire {{ $inventory->month }}
Magasin: {{ $inventory->store->name ?? '-' }}
@if($errors->any())
@foreach($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
Statut
@if($inventory->status === 'VALIDE')
Valide
@else
En cours
@endif
Mois
{{ $inventory->month }}
Validation
{{ $inventory->validated_at ? $inventory->validated_at->format('d/m/Y H:i') : '-' }}
Lignes
{{ $lines->count() }}
@if($lines->isEmpty())
Aucune ligne pour cet inventaire.
@else
@endif
@endsection