What is meant by Implicit Controllers
Answer / amit khanna
Implicit Controllers allow you to define a single route to handle every action in the controller.
You can define it in route.php file with Route:controller method as shown below.
Syntax : Route::controller(‘base URI’,’<class-name-of-the-controller>’);
| Is This Answer Correct ? | 0 Yes | 0 No |
What is method spoofing in laravel?
What are the 3 service provider types?
How to create real time sitemap.xml file in laravel?
What is observer in laravel?
Explain the controllers in laravel?
Explain what is valet?
what is Laravel-Routing ?
How to turn off crsf protection for specific route in laravel?
Where can I learn laravel?
What is laravel artisan?
What is raw expression in laravel?
How can you write your own service provider in laravel.