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 are the difference between insert() and insertgetid() in laravel?
What is algolia search?
What developed the laravel?
Explain the concept of contracts in laravel.
How can you make real time sitemap.xml file in laravel?
How to stop mysql on valet?
How to add additional sites in homestead environment?
How to create a laravel project using composer.
What are the operations perfom while Connecting the Database ?
What do you know about laravel contracts?
What is composer in laravel php?
What is faker in laravel?