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 |
What is reverse path multicasting?
How to configure route cache in laravel?
How to get, set, distroy cookies in laravel?
What is contextual binding?
How can someone change the default database type in laravel?
What are the requirements for laravel 5.8?
What do you mean by laravel dusk?
What are helper functions in laravel?
What is a controller middleware?
What is a recursive helper function?
What is a session in laravel?
What are redirect responses?