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 |
List server requirements for installing laravel 5.5?
What do you mean by bundles?
How do I register an artisan command?
How to make a helper file in laravel?
How to configuration laravel?
Is laravel secure?
How to get, set cookies in laravel?
Explain how to do subdomain routing in laravel?
How to install laravel by composer?
Is laravel nova free?
What is view laravel?
What is Testability ?