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 make method?
In which directory laravel configartion files are kept.
How we can upload files in laravel? Explain
Explain how to generate pretty urls in laravel?
Do you know validations in laravel?
How does the ioc (inversion of control) container work?
Explain binding instances?
What does valet park?
Define lumen.
What is singleton in laravel?
Does laravel support php 7?
How can we check the logged-in user info in laravel?