Answers for "how to path optional parameter to function in laravel example"

PHP
0

laravel route optional parameter

// You can make a parameter optional by placing a '?' after the parameter name.
// Make sure to give the route's corresponding variable a default value:
Route::get('user/{name?}', function ($name = null) {
    return $name;
});

Route::get('user/{name?}', function ($name = 'John') {
    return $name;
});
Posted by: Guest on February-16-2021
0

laravel optional params

//Use Route::get('/path/{id}/{start?}/{end?}', 'Controller@index'); 
//and handle the parameters in the controller function:

public function index($id, $start = null, $end = null)
{
    if (!$start) {
        // set start
    }

    if (!$end) {
        // set end
    }

    // do other stuff
}
Posted by: Guest on March-03-2021

Code answers related to "how to path optional parameter to function in laravel example"

Browse Popular Code Answers by Language