@extends('app') @section('content')
@if(Session::get('ADMINISTRATION_PRODUITS_AJOUTER'))
Ajouter
@endif
@if(Session::get('ADMINISTRATION_PRODUITS_IMPORTER')) Importer @endif
@if(Session::get('ADMINISTRATION_PRODUITS_EXPORTER')) Export @endif

Gestion des produits

@if(Session::has('msg'))
{!! session('msg') !!}
@endif @if(Session::has('msgDeleteOk'))
{!! session('msgDeleteOk') !!}
@endif @if(Session::has('msgDeleteNotOk'))
{!! session('msgDeleteNotOk') !!}
@endif @if($errors->any())
{!! $errors->first() !!}
@endif




@if(Session::get('COMPOSE_PACK')) @endif @if(Session::get('ADMINISTRATION_PRODUITS_MODIFIER')) @endif @if(Session::get('ADMINISTRATION_PRODUITS_SUPPRIMER')) @endif @foreach( $produits as $produit) @if(Session::get('COMPOSE_PACK')) @endif @if(Session::get('ADMINISTRATION_PRODUITS_MODIFIER')) @endif @if(Session::get('ADMINISTRATION_PRODUITS_SUPPRIMER')) @endif
@endforeach
Désignation Catégorie Code produit Référence TVA Mesure Poids (kg) Volume (m³)Produit composé (pack)StatutModifierSupprimer
{!!$produit->designation!!} {!!$produit->catigorie->libelle!!} {!!$produit->code_identification!!} {!!$produit->reference!!} {!!$produit->tva!!} {!!$produit->uniteMesure->libelle!!} {!!$produit->poids!!} {!!$produit->volume!!}{!!$produit->compose_pack!!}{!!$produit->statut!!}

Affichage de l'élement {{($produits->currentPage()-1)* $produits->perPage()+($produits->total() ? 1:0)}} à {{($produits->currentPage()-1)*$produits->perPage()+count($produits)}} sur {{$produits->total()}} éléments

{{ $produits->links() }}
@endsection