Explain Laravel - Event Handling ?
Answer / surbhi
All the event classes in Laravel are stored in the app/Events folder and the listeners are stored in the app/Listeners folder.
The artisan command for generating events and listeners in your web application is shown below -
php artisan event:generate
This command generates the events and listeners to the respective folders as discussed above.
Is This Answer Correct ? | 0 Yes | 0 No |
What is mvc framework?
What is the use of blade?
Tell me how do you do dependency injection in laravel?
Write a code to upload a file in laravel 5?
What is dd() function in laravel?
Explain web.php route.
How to turn off crsf protection for specific route in laravel?
Explain the concept of cookies.
How to use session in laravel?
How we can upload files in laravel? Explain
Tell me what are system requirement for laravel 5.0?
Explain what is laravel