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

Write code to upload a file in laravel 5?

0 Answers  


How can you exclude uris from csrf protection in laravel?

0 Answers  


What is meant by check method ?

1 Answers  


How can someone turn off csrf protection for a specific route?

0 Answers  


What is composer in laravel php?

0 Answers  






What is laravel auth guard?

0 Answers  


What is meant by Forms in Laravel ?

1 Answers  


What is route parameters in laravel?

0 Answers  


What is the use of route in laravel?

0 Answers  


What is mvc framework laravel?

0 Answers  


Explain how to add csrf protection in laravel?

0 Answers  


What is api php in laravel?

0 Answers  


Categories