Skip to content

Instantly share code, notes, and snippets.

@raksit31667
Created May 2, 2024 17:25
Show Gist options
  • Save raksit31667/85b4837f19772e75bc2c58cdabe17715 to your computer and use it in GitHub Desktop.
Save raksit31667/85b4837f19772e75bc2c58cdabe17715 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}', [UserController::class, 'show']);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment