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 composer tool?
What are controllers in laravel?
What is Basic Response in Laravel ?
Is it easy to learn laravel?
What is eager loading in laravel?
What do you know about laravel eloquent?
How do I use eloquent to get a list of comments with one author each avoiding n+1 queries?
How to create Controller Laravel - File Uploading ?
How to install mysql on valet?
How to create model controller and migration in a single artisan command in laravel?
How to check if value is sent in request?
Explain service container?