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

How to get JSON Response on Laravel ?

1 Answers  


Is laravel built on symfony?

0 Answers  


What is route model binding?

0 Answers  


What is remember token in laravel?

0 Answers  


How do I make all of my forms bootstrap opinionated?

0 Answers  






What are the software’s included in laravel homestead?

0 Answers  


What is the service container in laravel?

0 Answers  


How do I add a 3rd party package to your application like laravel-emoji?

0 Answers  


List some official packages provided by laravel?

0 Answers  


Explain how to register a service provider via composer in laravel?

0 Answers  


What is the use of slug in laravel?

0 Answers  


What is laravel trait?

0 Answers  


Categories