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

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

{{ $reclamations->total() }} @lang("Enregistrement")
@lang("Liste") @can('reclamation-create') @lang("Ajouter") @endcan @can('reclamation-pdf') @lang("PDF") @endcan
@include("layouts.alert")
@if($isannonceur==null)
@endif

@if(count($reclamations) > 0) @foreach($reclamations as $reclamation) @endforeach @else @endif
@lang("annonceur_id") @lang("sujet") @lang("Description") @lang("Statut") Actions
{{$reclamation->annonceur->nom_prenoms_contact}} {{$reclamation->sujet}} {{$reclamation->description}} {{$reclamation->statutmessage->libelle}} @lang("Afficher") {{-- @can('reclamation-edit') @lang("Editer") @endcan--}} @lang("Conversation") @can('reclamation-statut') @if($isannonceur==null) @if($reclamation->statutmessage_id == 1) @endif @endif @endcan
@lang("listeempty")
{{ $reclamations->appends(request()->input())->links('layouts.paginationlinks') }}
@endsection