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

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

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

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