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 http middleware?
How we can get user's detail when he is logged in using auth?
What is php artisan. List out some artisan commands?
How do I require authentication for a set of routes associated with a subdomain?
How to return a view from route in laravel?
explain how to add a middleware in route group?
What are model factories?
Do you know what is php artisan.
What is composer tool?
How to install laravel?
Differentiate between delete() and softdeletes().
What is the laravel framework?