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

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

{{ $factures->total() }} @lang("Enregistrement")
@include("layouts.alert")

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