final 1.2

This commit is contained in:
2026-06-06 23:19:55 +02:00
parent a8c841bdbe
commit bc57d0dcd0
17 changed files with 142 additions and 537 deletions
+1 -2
View File
@@ -59,8 +59,7 @@ class EmailController extends Controller
$query->orderBy($sortField === 'sent_at' ? 'received_at' : $sortField, $sortDir);
$perPage = in_array((int) $request->perPage, [10, 20, 25, 50, 100]) ? (int) $request->perPage : 20;
$messages = $query->paginate($perPage)->withQueryString();
$messages = $query->paginate(20)->withQueryString();
$folders = EmailFolder::orderBy('sort_order')->get();
$mailingLists = MailingList::where('attiva', true)->get();
$gruppi = Gruppo::orderBy('nome')->get();