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 install laravel via composer?
What is php artisan. List out some artisan commands?
What is the make method?
what is meant by Listeners ?
How install react js in laravel?
What is attribute casting and how does it work in eloquent?
Explain how to install valet?
How do I turn off csrf protection?
How to localize resource uris in laravel?
how to create subdomain routing in laravel 5?
What do you mean by laravel mix?
Explain homestead in laravel.
Explain the difference between laravel 4 and laravel 5?
Explain about Form without CSRF token in Laravel ?
What are the applications supported by valet?