Answers for "laravel block routes for route"

PHP
7

laravel show routes artisan

php artisan route:list
Posted by: Guest on July-28-2020
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

Code answers related to "laravel block routes for route"

Browse Popular Code Answers by Language