@extends('layouts.squelette') @section('css_header') @endsection @section('titre') {{ __('Exploitants') }} @endsection @section('titre_header') {{ __('Exploitants') }} @endsection @section('titre_page') {{ __('Liste') }} @endsection @section('panel_boutons') @include('layouts.partials.panelboutons', ['btn_ajout' => 'route', 'btn_imprim'=> false, 'btn_export'=> false]) @endsection @section('contenu')
@foreach ($exploitants as $exploitant) @endforeach
{{ __('Nom de l\'exploitant') }} {{ __('Mail') }} {{ __('Téléphone') }} {{ __('Pays') }} {{ __('Actions') }}
{!! $exploitant->exp_socialReason !!} {!! $exploitant->exp_email !!} {!! $exploitant->exp_phone !!} {!! $exploitant->cou_nameFr !!}
@endsection @section('js_footer') @endsection @section('modale') @include('modales.delete_standard') @endsection