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

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

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

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