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 an observer in laravel?
Explain dependency injection and their types.
What is laravel api?
Can you please explain the difference between laravel and codeigniter?
How can we get the user's ip address in laravel?
What is use of pluck in laravel?
What is lumen?
List out some artisan commands?
What is the difference between facades vs helper functions?
How to extend login expire time in auth?
What is the use of fillable in laravel?
What is the use of slug in laravel?