@extends('layouts.squelette')
@section('css_header')
@endsection
@section('titre')
{{ __("Catégories") }}
@endsection
@section('titre_header')
{{ __("Catégories") }}
@endsection
@section('titre_page')
{{ __("Liste") }}
@endsection
@section('panel_boutons')
@include('layouts.partials.panelboutons', ['btn_ajout' => 'route', 'btn_imprim'=> true, 'btn_export'=> true])
@endsection
@section('contenu')
| # |
{{ __("Code") }} |
{{ __("Libelle") }} |
{{ __("Actif") }} |
{{ __("Actions") }} |
@foreach ($categories as $element)
| {{ $element->genCosCat_id }} |
{{ $element->genCosCat_code }} |
{{ $element->genCosCat_nameFr }} |
@if ($element->genCosCat_active == 1)
@endif
|
|
@endForeach
@endsection
@section('js_footer')
@endsection
@section('modale')
@include('modales.delete_standard')
@endsection