name('home'); // Subscription API routes Route::post('/api/subscribe', [SubscriptionController::class, 'subscribe'])->name('api.subscribe'); Route::get('/api/unsubscribe/{token}', [SubscriptionController::class, 'unsubscribe'])->name('api.unsubscribe'); // Document download route Route::get('/api/documents/{id}/download', [DocumentController::class, 'download'])->name('api.documents.download'); Route::get('/dashboard', function () { return Inertia::render('Dashboard'); })->middleware(['auth', 'verified'])->name('dashboard'); Route::middleware('auth')->group(function () { Route::get('/profile', [ProfileController::class, 'edit'])->name('profile.edit'); Route::patch('/profile', [ProfileController::class, 'update'])->name('profile.update'); Route::delete('/profile', [ProfileController::class, 'destroy'])->name('profile.destroy'); }); require __DIR__.'/auth.php';