@extends('layouts.app') @section('title', 'Articles en Stock') @section('breadcrumb') @endsection @section('content')

Articles en Stock

@if($canManage) Nouvel Article @endif
@forelse($stockItems as $item) @empty @endforelse
Nom Code Catégorie Quantité Unité Valeur Unitaire Actions
{{ $item->name }} @if($item->current_quantity <= $item->minimum_quantity) @endif {{ $item->code }} {{ $item->category }} {{ $item->current_quantity }} {{ $item->unit }} {{ number_format($item->unit_price, 0, ',', ' ') }} FCFA @if($canManage)
@csrf @method('DELETE')
@endif
Aucun article en stock.
@endsection