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

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

{{ $statutannonces->total() }} @lang("Enregistrement")
@lang("Liste") @can('statutannonce-create') @lang("Ajouter") @endcan
@include("layouts.alert")

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