10 lines
299 B
PHP
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');
|