@extends('modules.layouts.base') @php $moduleTitle = 'Stampe Rate'; $moduleIcon = 'fas fa-print'; $moduleBreadcrumb = 'Moduli > Stampe Rate'; @endphp @section('module-actions')
@can('stampe_rate_create') Nuova Stampa @endcan Gestisci Template
@endsection @section('module-content')
{{ $stampe->total() ?? 0 }}
Stampe Totali
{{ $stampe->where('status', 'completed')->count() }}
Completate
{{ $stampe->where('status', 'processing')->count() }}
In Elaborazione
{{ $stampe->sum('rate_count') ?? 0 }}
Rate Generate
Elenco Stampe Rate
{{ $stampe->total() ?? 0 }} stampe trovate
@if($stampe->isEmpty())

Nessuna stampa rate ancora generata

Inizia creando la tua prima stampa rate utilizzando i nostri template professionali.

@can('stampe_rate_create') Crea Prima Stampa @endcan
@else
@foreach($stampe as $stampa) @endforeach
Data Creazione Stabile Template Rate Generate Stato Azioni
{{ $stampa->created_at->format('d/m/Y') }}
{{ $stampa->created_at->format('H:i') }}
{{ $stampa->stabile_nome }}
{{ Str::limit($stampa->stabile_indirizzo, 30) }}
{{ $stampa->template_nome }} {{ number_format($stampa->rate_count) }} rate @switch($stampa->status) @case('completed') Completata @break @case('processing') In elaborazione @break @case('failed') Errore @break @default {{ ucfirst($stampa->status) }} @endswitch
@if($stampa->status === 'completed') @endif @can('stampe_rate_delete') @endcan
@if($stampe->hasPages()) @endif @endif
@endsection @push('scripts') @endpush