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

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

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

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