Skip to content

Instantly share code, notes, and snippets.

@raksit31667
Last active May 2, 2024 17:16
Show Gist options
  • Save raksit31667/f6423aaddfec2f3eb2584434738dcbe8 to your computer and use it in GitHub Desktop.
Save raksit31667/f6423aaddfec2f3eb2584434738dcbe8 to your computer and use it in GitHub Desktop.
<?php
use App\Http\Controllers\UserController;
use Illuminate\Support\Facades\Route;
Route::get('/', function () {
return view('welcome');
});
// เพิ่ม
Route::get('/users/{username}', []);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment