документы + мейл сервер

This commit is contained in:
2026-07-27 15:42:54 +04:00
parent 9ed56ec93d
commit df0b051ee6
27 changed files with 1969 additions and 118 deletions
+1
View File
@@ -22,6 +22,7 @@ Route::get('/news/{news}', [NewsController::class, 'show'])
->name('news.show');
Route::get('/public-offer', [LegalController::class, 'offer'])->name('legal.offer');
Route::get('/privacy-policy', [LegalController::class, 'privacy'])->name('legal.privacy');
Route::get('/project-rules', [LegalController::class, 'rules'])->name('legal.rules');
Route::get('/launcher/login-news.txt', [WowLoginNewsFeedController::class, 'show'])->name('launcher.login-news.show');
Route::get('/appcast.xml', static fn () => Storage::disk('public')->get('appcast.xml'));
Route::post('/register', [LandingController::class, 'register'])