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

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

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

@if(count($auditaccess) > 0) @foreach($auditaccess as $auditacces) @endforeach @else @endif
@lang("Login") @lang("Date acces") Actions
{{$auditacces->login}} {{$auditacces->dateacces}} @lang("Afficher") @can('auditacces-edit') @lang("Editer") @endcan @can('auditacces-statut') @if($auditacces->active == 1) @else @endif @endcan
@lang("listeempty")
{{ $auditaccess->appends(request()->input())->links('layouts.paginationlinks') }}
@endsection