What are Laravel events?

Technology CommunityCategory: LaravelWhat are Laravel events?
VietMX Staff asked 3 years ago

Laravel event provides a simple observer pattern implementation, that allow to subscribe and listen for events in the application. An event is an incident or occurrence detected and handled by the program.

Below are some events examples in Laravel:

  • A new user has registered
  • A new comment is posted
  • User login/logout
  • New product is added.