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

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

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

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