first commit
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Foundation\Inspiring;
|
||||
use Illuminate\Support\Facades\Artisan;
|
||||
|
||||
Artisan::command('inspire', function () {
|
||||
$this->comment(Inspiring::quote());
|
||||
})->purpose('Display an inspiring quote');
|
||||
@@ -0,0 +1,9 @@
|
||||
<?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');
|
||||
Reference in New Issue
Block a user