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

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

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

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