Laravel Route Optional Parameters

Today, We want to share with you Laravel Route Optional Parameters.In this post we will show you How to Use Parameters in Laravel Routes?, hear for Laravel 5.8 optional route parameters we will give you demo and example for implement.In this post, we will learn about Laravel 5.7 – Routing to controller with optional parameters with an example.

Laravel Route Optional Parameters

There are the Following The simple About Route Optional Parameters using La-ravel 5.8 Full Information With Example and source code.

As I will cover this Post with live Working example to develop Handling route with multiple optional parameters, so the laravel route parameters controller for this example is following below.

/opt/lampp/htdocs/admin-panel/routes


Route::get('user/{name?}', function ($name = null) {
    return $name;
});

Route::get('user/{name?}', function ($name = 'John') {
    return $name;
});


Route::get('/datas/{id?}', 'TestController@getTest');

opt/lampp/htdocs/admin-panel/app/Http/Controllers/TestController.php



//http://pakainfo/admin-panel/public/products/shofa
//http://pakainfo/admin-panel/public/products
Route::get('/products/{product?}', function($product = null)
{
    // if product is set, show the product
    // if not, then show all
    if ($product)
        return 'This is the ' . $product . ' section.';
    else
        return 'These are all the photos.';

});
Web Programming Tutorials Example with Demo

Read :

Summary

You can also read about AngularJS, ASP.NET, VueJs, PHP.

I hope you get an idea about Simple Route with Optional Parameters.
I would like to have feedback on my infinityknow.com blog.
Your valuable feedback, question, or comments about this article are always welcome.
If you enjoyed and liked this post, don’t forget to share.

Leave a Comment