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 |
Explain loggin in laravel.
What are macros in laravel?
What are the difference between latest() and oldest() in laravel?
Explain request life cycle of laravel.
What is crud in laravel?
Difference between Authentication and Authorization ?
What is the laravel?
What is an api route?
How will you describe bundles in laravel?
What is an artisan? Name some common artisan commands?
What is fillable attribute in a model?
What do you know about laravel contracts?