@extends('layouts.squelette') @section('css_header') @endsection @section('titre') {{ __("Articles") }} @endsection @section('titre_header') {{ __("Articles") }} @endsection @section('titre_page') {{ __("Liste") }} @endsection @section('panel_boutons') @include('layouts.partials.panelboutons', ['btn_ajout' => 'modale', 'btn_imprim'=> false, 'btn_export'=> false]) @endsection @section('contenu')
@foreach ($articles as $article) @endforeach
{{ __("Nom") }} {{ __("Actif") }} {{ __("Actions") }}
{!! $article->art_nameFr !!} @if ($article->art_active == 1) @endif
@endsection @section('js_footer') @endsection @section('modale') @include('modales.delete_standard') @endsection