what is Basic Routing ?



what is Basic Routing ?..

Answer / sunil kumar

All the application routes are registered within the app/routes.php file.

This file tells Laravel for the URIs it should respond to and the associated controller will give it a particular call.

Example :

<?php
Route::get('/', function ()
{
return view('welcome');
}
);

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Laravel PHP Framework Interview Questions

Can you please explain the difference between laravel and codeigniter?

0 Answers  


What is artisan in laravel?

0 Answers  


How can you exclude uris from csrf protection in laravel?

0 Answers  


What is luman?

0 Answers  


What are service providers?

0 Answers  






What is factory in laravel?

0 Answers  


What are contracts?

0 Answers  


What the server requirements for laravel?

0 Answers  


What is laravel echo?

0 Answers  


How to Storing Session Data in Laravel ?

1 Answers  


What is the default session timeout duration and how can it be set?

0 Answers  


What is route in laravel?

0 Answers  


Categories