Files
moonwell-web/routes/web.php
T
2026-03-11 22:04:36 +04:00

10 lines
299 B
PHP

<?php
use App\Http\Controllers\LandingController;
use Illuminate\Support\Facades\Route;
Route::get('/', [LandingController::class, 'index'])->name('landing.index');
Route::post('/register', [LandingController::class, 'register'])
->middleware('throttle:8,1')
->name('game-account.store');