You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 9, 2024. It is now read-only.
i want build like this , update style
Route::get('/user/{id}', function ($id) {
return 'User '.$id;
});
and like that
Route::view('/welcome', 'welcome');
for now
// Create a Router object dari bramus router
$router = new Router();
//configuruation route
$router->get('/', function () {
return view('Welcome');
});
// run route!
$router->run();
The text was updated successfully, but these errors were encountered: