laravel new route code example

Example 1: laravel get route

Route::get('foo', function () {
    return 'Hello World';
});

Example 2: route() and with() in laravel

Route::get('user/{id}/profile', function ($id) {
    //
})->name('profile');

$url = route('profile', ['id' => 1, 'photos' => 'yes']);

// /user/1/profile?photos=yes

Example 3: laravel route match

Route::match(['get', 'post'], '/', function () {
    //
});

Route::any('/', function () {
    //
});

Example 4: how to create route in laravel

Route::match(['get', 'post'], '/', function () {
    //
});

Example 5: laravel route

Route::view('/welcome', 'welcome');

Route::view('/welcome', 'welcome', ['name' => 'Taylor']);

Tags:

Php Example