Answer Posted / 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 |
Post New Answer View All Answers
What are the three types of authentication?
What is service provider in laravel?
Is laravel an mvc?
Explain the difference between implicit and explicit route binding in laravel?
Why are migrations important?
What is laravel service container?
What is rate limiting?
How do I require authentication for a set of routes associated with a subdomain?
Tell me what is database migration? And how to use it to add insert initial data to database?
How to create model controller and migration in a single artisan command in laravel?
How to share data with views?
What is active record in laravel?
What is artisan in laravel?
Explain auth.
What are the validations in laravel?