@extends('layouts.squelette') @section('css_header') @endsection @section('titre') {{ __('Activités') }} @endsection @section('titre_header') {{ __('Activités') }} @endsection @section('titre_page') {{ __('Liste') }} @endsection @section('panel_boutons') @include('layouts.partials.panelboutons', ['btn_ajout' => 'route', 'btn_imprim'=> true, 'btn_export'=> true, 'btn_export2'=> false, 'btn_import'=> false]) @endsection @section('contenu')
@foreach ($activites as $element) @endForeach
# {{ __('Code') }} {{ __('Libelle') }} {{ __('Actif') }} {{ __('Actions') }}
{{ $element->act_id }} {{ $element->act_code }} {{ $element->act_name }} @if ($element->act_active == 1) @endif
@endsection @section('js_footer') @endsection @section('modale') @include('modales.delete_standard') @endsection