@extends('layouts.squelette') @section('css_header') @endsection @section('titre_header') {{ __("Prospects") }} @endsection @section('titre') {{ __("Prospects") }} @endsection @section('titre_page') {{ __("Liste des prospects") }} @endsection @section('panel_boutons') @include('layouts.partials.panelboutons', ['btn_ajout' => 'route', 'btn_imprim'=> false, 'btn_export'=> false]) @endsection @section('contenu')
@foreach ($prospects as $item) @endforeach
# {{ __("Nom") }} {{ __("Statut") }} {{ __("Prochaine Action Commerciale") }} {{ __("Coordonnées") }} {{ __("Actions") }}
{!! $item->pro_id !!} {!! $item->pro_name !!}
{!! $item->pro_synonymous !!}
{!! $item->pro_descStatus !!} {!! date_en_fr($item->pro_dateActionComm) !!} Tel : {!! $item->pro_phone !!}
@endsection @section('js_footer') @endsection @section('modale') @include('modales.delete_standard') @endsection