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 |
Is laravel secure?
What is the use of dd() function?
What are the site types supported by homestead?
What do you know about closures in laravel?
What is current stable version of laravel?
What is the use of db facade?
What do you mean by composer?
How to register a middleware in laravel 5?
How to Connecting to Database in Laravel ?
Tell us have you used lumen before?
What do you mean by view composers?
What is laravel passport?