Answers for "route get laravel"

PHP
4

laravel route namespace and prefix

Route::prefix('admin')->group(function () {
    Route::get('/users', function () {
        // Matches The "/admin/users" URL
    });
});
Posted by: Guest on December-15-2020
0

laravel route Accessing The Current Route

$route = Route::current();

$name = Route::currentRouteName();

$action = Route::currentRouteAction();
Posted by: Guest on July-24-2021
5

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
Posted by: Guest on May-30-2020
2

laravel get route

Route::get('/user', 'UserController@index');
Posted by: Guest on March-10-2020
2

laravel route

Route::get('user/profile', [UserProfileController::class, 'show'])->name('profile');
Posted by: Guest on October-07-2020
0

laravel route name routes

Route::get('user/profile', function () {
    //
})->name('profile');
Posted by: Guest on July-24-2021

Browse Popular Code Answers by Language