@extends('layouts.squelette') @section('css_header') @endsection @section('titre_header') {{ __("Régions") }} @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 ($regions as $region) @endforeach
{{ __("Nom") }} {{ __("Responsable") }} {{ __("Actions") }}
{!! $region->reg_name !!} {!! $region->reg_managerName !!}
@endsection @section('js_footer') @endsection @section('modale') @include('modales.delete_standard') @endsection