@extends('layouts.squelette') @section('css_header') @endsection @section('titre_header') {{ __("Clients") }} @endsection @section('titre') {{ __("Clients") }} @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 ($customers as $item) @endforeach
# {{ __("Raison sociale") }} {{ __("Téléphone") }} {{ __("Ville") }} {{ __("Pays") }} {{ __("Actions") }}
{!! $item->cus_id !!} {!! $item->cus_socialReason !!} {!! $item->cus_phone !!} {!! $item->cus_zipCode !!} {!! $item->cus_city !!} {!! $item->cou_nameFr !!}
@endsection @section('js_footer') @endsection @section('modale') @include('modales.delete_standard') @endsection