lthn.io/app/Mod/Names/Routes/web.php

12 lines
378 B
PHP
Raw Permalink Normal View History

<?php
declare(strict_types=1);
use Illuminate\Support\Facades\Route;
use Mod\Names\Controllers\NamesWebController;
Route::get('/', [NamesWebController::class, 'index']);
Route::get('/register', [NamesWebController::class, 'register']);
Route::get('/{name}/og.svg', \Mod\Names\Controllers\OgImageController::class);
Route::get('/{name}', [NamesWebController::class, 'show']);