Search
Close this search box.
Search
Close this search box.

What to Create The Basic Laravel Routes?

Laravel

In Laravel, every post put, and delete request has an accompanying CSRF token that needs to be given along with the request. If this is not remedied, the request will be denied. The official documentation for Laravel contains further information regarding CSRF prevention.

A Basic GET Route

You may construct a GET request route for /table using the code that is below; doing so will cause the table to be displayed on the screen.

Route::get(‘/table’, function () {

   for($i =1; $i <= 10 ; $i++){

       echo “$i * 2 = “. $i*2 .”<br>”;

   }   

});

Now, let’s say you want the user to select the number of copies of the table that should be printed by the route. The following is the routing code for such a path:

Route::get(‘/table/{number}’, function ($number) {

   for($i =1; $i <= 10 ; $i++){

       echo “$i * $number = “. $i* $number .”<br>”;

   }   

});

A route variable was created and provided to the route function in the preceding code. Any time a user navigates to /table and includes a number in the request, the function will now output the table corresponding to that number. 

Indeed! Optional parameters are supported in Laravel, and you will be able to implement them by appending a question mark (?) to the end of the parameter’s name and the default value. Here’s what you’ll do for the preceding route example:

Route::get(‘/table/{number?}’, function ($number = 2) {

   for($i =1; $i <= 10 ; $i++){

       echo “$i * $number = “. $i* $number .”<br>”;

   }   

});

If you face error, you can also check How to fix “The POST method is not supported for this route. Supported methods: GET, HEAD”.

Regular Expression Constraints For Route Parameters

Up above, we established a path for a table, but how can we check if the parameter passed along that path is, in fact, a numeric value so that we don’t encounter any errors while constructing the table?

When creating a route in Laravel, you can use the ‘where’ method on the route instance to establish a restriction for the route’s parameters. The where method accepts a parameter name and a regular expression rule specific to that parameter. First, let’s set a requirement that the function accepts only the value “number” for the “number” parameter.

Route::get(‘/table/{number?}’, function ($number = 2) {

   for($i =1; $i <= 10 ; $i++){

       echo “$i * $number = “. $i* $number .”<br>”;

   }   

})->where(‘number’, ‘[0-9]+’);

You can also define a regular expression for our route number in the preceding code snippet. A NotFoundHttpException will now be shown if the user attempts to route to the /table/no path.

Laravel Routing with Controller Function

In Laravel, it is possible to assign a controller method to a route. In the presence of a controller method, whenever a user visits the route, the defined method of the controller will execute the actions.

Use the following code snippet to assign a controller method to the route.

Route::get(‘/home’, ‘YourController@functionname’);

The code begins with ‘Route::’ and defines the route’s request method. Next, describe your route, followed by the Controller and the method you wish to tie to this route by prefixing the method’s name with the @ sign.

Naming Your Route

You can define the name of your route in Laravel. This moniker is frequently useful in a variety of situations. If you wish to redirect a user from one route to another, for instance, you do not need to define the complete redirect URL. Instead, you need to only provide its name for the code to function! Using the ‘name’ method on the route object, you may define the route’s name.

Route::get(‘/table/{number?}’, function ($number = 2) {

   for($i =1; $i <= 10 ; $i++){

       echo “$i * $number = “. $i* $number .”<br>”;

   }   

})->where(‘number’, ‘[0-9]+’)->name(‘table’);

Now, I am able to regenerate the URL for this route by:

$url = route(‘table’);

Similarly, the correct syntax for redirecting to this URL would be:

return redirect()->route(‘table’);

Conclusion

We have discussed the Laravel 5.5 route. I presented other related ideas pertaining to routes, including regular expressions and route names. You might also refer to the official Laravel routing docs to learn more about routing.


Subscribe to Our Newsletter

Related Articles

Top Trending

Web3 Fashion Brands Revolutionizing Digital Wearables
7 Web3 Fashion Brands Shaping the Future of Digital Wearables
Most Controversial Games Ever Released
7 Most Controversial Games Ever Released – And Why They Shocked Us
ovo unblocked
Ovo Unblocked Games: Popular Features, Tips, and Similar Games
Key Elements of Effective Personal Branding in the Digital Age
Mastering 5 Key Elements of Effective Personal Branding in the Digital Age
Personal Injury Claim Without a Lawyer in Australia
5 Easy Steps to Filing a Personal Injury Claim Without a Lawyer in Australia

LIFESTYLE

wellhealthorganic.com effective natural beauty tips
Top 5 Well Health Organic Beauty Tips for Glowing Skin
Chemical-Free Alternatives to Your Favorite Beauty Products
7 Chemical-Free Alternatives to Your Favorite Beauty Products You Need to Try
Clothes That Flatter Your Natural Shape
How to Find Clothes That Flatter Your Natural Shape?
Tax-Saving Tips for Retirees in Germany
Maximize Your Savings: 10 Tax-Saving Tips for Retirees in Germany
Lauren Sanchez Jeff Bezos Italian summer wedding
Jeff Bezos & Lauren Sánchez Set for Glam Italian Wedding This Summer

Entertainment

t_o_princessxoxo
T_o_princessxoxo: What You Need to Know About Kalani Rodgers
rosamund pike nipple covers pierce brosnan bond scene
Rosamund Pike Feared Nipple Covers Tore Pierce Brosnan's Chest Hair
backstageviral .com
Uncover The Best Viral Content on BackstageViral.com
Classic Games That Need a Remake Right Now
10 Classic Games That Need a Remake Right Now: Nostalgia Reloaded
Nate Bargatze net worth
Nate Bargatze Net Worth: Education, Age, Height, Weight, Career & More

GAMING

Most Controversial Games Ever Released
7 Most Controversial Games Ever Released – And Why They Shocked Us
ovo unblocked
Ovo Unblocked Games: Popular Features, Tips, and Similar Games
Crypto Games
10 Crypto Games That Are More Than Just Play-to-Earn Experiences
Gaming Desks That Maximize Space & Comfort
10 Gaming Desks That Maximize Space & Comfort for Ultimate Setup
Compact Gaming Setups for Small Spaces
5 Compact Gaming Setups Perfect for Small Spaces In 2025

BUSINESS

Logistics Companies in South America
Top 15 Logistics Companies in South America: Who’s Leading the Market?
Tax Planning Strategies for High-Net-Worth Australians
8 Advanced Tax Planning Strategies for High-Net-Worth Individuals in Australia
Plumbing Companies in the USA for Fire Sprinkler System Installation
Top 10 Plumbing Companies in the USA for Fire Sprinkler System Installation
Estate Planning Tax Strategies for Wealth Preservation in the UK
12 Estate Planning Tax Strategies for Wealth Preservation in the UK
Biggest NFT Fails and What We Can Learn From Them
The 7 Biggest NFT Fails and What We Can Learn From Them

TECHNOLOGY

Web3 Fashion Brands Revolutionizing Digital Wearables
7 Web3 Fashion Brands Shaping the Future of Digital Wearables
Tips to Prevent SQL Injection and Data Breaches
10 Expert Tips to Prevent SQL Injection and Data Breaches Effectively
Best Tools to Help You Migrate from Shared Hosting
 7 Tools to Help You Migrate from Shared Hosting to VPS Seamlessly
Telemedicine Tips
Telemedicine Tips: Scheduling Virtual Care Right
Strategies to Increase Your Visibility and Reach Online
7 Highly Effective Strategies to Significantly Increase Your Visibility and Reach Online

HEALTH

Telemedicine Tips
Telemedicine Tips: Scheduling Virtual Care Right
Advanced Energy Shaping the Future of Surgery
How Is Advanced Energy Shaping the Future of Surgery?
Does Kratom Have Calories
Does Kratom Have Calories? Understanding Its Nutritional Profile and Metabolic Impact
Common Dental Issues
5 Common Dental Issues and How to Prevent Them
How Ice Baths Can Support Immune Function
How Ice Baths Can Support Immune Function?