@extends("layouts.dashboard") @section("wrapper")
@include("layouts.second-header")
@lang("Retour")

@lang("Liste") {{ $title ?? "Titre" }}

{{ $annonceurs->total() }} @lang("Enregistrement")
@lang("Liste") @can('annonceur-create') @lang("Ajouter") @endcan @can('annonceur-pdf') @lang("PDF") @endcan
@include("layouts.alert")

@if(count($annonceurs) > 0) @foreach($annonceurs as $annonceur) @endforeach @else @endif
@lang("natureannonceur_id") @lang("nom_prenoms_contact") @lang("email") @lang("telephone_mobile") Actions
@if($annonceur->natureannonceur!=null){{$annonceur->natureannonceur->libelle}}@endif @if($annonceur->natureannonceur_id=1){{$annonceur->nom_prenoms_contact}}@else{{$annonceur->nom_entreprise}}@endif {{$annonceur->email}} {{$annonceur->telephone_mobile}} @lang("Afficher") @can('annonceur-edit') @lang("Editer") @endcan @can('annonceur-statut') @if($annonceur->active == 1) @else @endif @endcan
@lang("listeempty")
{{ $annonceurs->appends(request()->input())->links('layouts.paginationlinks') }}
@endsection