group(function (): void { Route::get('/students', [StudentReadController::class, 'index']); Route::get('/students/{student}', [StudentReadController::class, 'show']); Route::get('/payments/{payment}/files/{file}', [PaymentFileController::class, 'show']); });