Answer Posted / 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 View All Answers
How to create & register a service provider in laravel 5?
State the difference between authentication and authorization.
Please explain what are the main differences between laravel 4 and laravel 5.x?
What are the difference between laravel 5 & laravel 4?
List the default ports that are forwarded to your homestead environment?
Explain service container?
What are helper functions and name 10 with their purposes?
Differce between contracts and facades?
What are the example of services?
How do I make a particular task run everyday by 10pm?
How do I register a middleware?
How to install laravel via composer?
What is meant by Implicit Controllers
Is laravel an open source?
List types of relationships available in laravel eloquent?