+1 vote
in Laravel by
What are Laravel events?

1 Answer

0 votes
by
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.
...