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

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

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

@if(count($reclamationmessages) > 0) @foreach($reclamationmessages as $reclamationmessage) @endforeach @else @endif
@lang("reclamation_id") Actions
{{$reclamationmessage->reclamation->id}} @lang("Afficher") @can('reclamationmessage-edit') @lang("Editer") @endcan @can('reclamationmessage-statut') @if($reclamationmessage->active == 1) @else @endif @endcan
@lang("listeempty")
{{ $reclamationmessages->appends(request()->input())->links('layouts.paginationlinks') }}
@endsection