@extends('layouts.app') @section('title', 'Produits') @section('breadcrumb', 'Catalogue / Produits') @section('content')
{{-- ======= MODAL IMPORT ======= --}} {{-- ======= /MODAL IMPORT ======= --}} {{-- Filtres --}}
@forelse($produits as $p) @empty @endforelse
ImageCodeNomFamilleUnité Prix Achat HTPrix Vente HTMarge % StockStatutActions
@if($p->image) {{ $p->nom }} @else @endif
{{ $p->code_article }}
{{ $p->nom }}
@if($p->code_barre)
{{ $p->code_barre }}
@endif
{{ $p->famille?->label ?? '-' }} {{ $p->unite?->code ?? '-' }} {{ number_format($p->prix_achat_ht, 3, ',', ' ') }} {{ number_format($p->prix_vente_ht, 3, ',', ' ') }} {{ number_format($p->marge, 1) }}% {{ number_format($p->qte_stock, 0) }} {{ $p->actif ? 'Actif' : 'Inactif' }}
@csrf @method('DELETE')
Aucun produit trouvé
@if($produits->hasPages())
{{ $produits->links() }}
@endif
{{-- /x-data showImport --}} @endsection @push('scripts') @endpush