🤖 Auto commit for release 'develop' on 2026-07-09

This commit is contained in:
JC5
2026-07-09 19:57:19 +02:00
parent 6b565d7c8f
commit c425b40af8
61 changed files with 506 additions and 491 deletions
@@ -81,7 +81,7 @@ final class IndexController extends Controller
public function index(Request $request): Factory|\Illuminate\Contracts\View\View
{
$page = 0 === (int) $request->input('page') ? 1 : (int) $request->input('page');
$page = min(max(1, $page), 2 ** 16);
$page = min(max(1, $page), 2 ** 16);
$pageSize = (int) Preferences::get('listPageSize', 50)->data;
$collection = $this->repository->get();
$today = today(config('app.timezone'));