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 |
Can I use react with laravel?
What is cross site request forgery with example?
How to disable maintaince mode in laravel?
What do you mean by boot & register method used in laravel 5?
What is a check method ?
Tell me why laravel over other php frameworks?
How to enable/disable maintenance mode in laravel 5?
What is laravel dependency injection?
What is a Artisan command ?
What is the use of the bootstrap directory?
What is remember token in laravel?
How to stop mysql on valet?