I am trying to create a logging system in Laravel 4 where anytime a model executes save, update or delete, I can log it into the database. But I am little confused after reading tutorial like this one:
https://bosnadev.com/2014/12/28/laravel-model-observers/
How are the observers called? How the model know when to fire them? I am confused on the implementation works.
Even in Laravel 4 you can use it's own observers for those functions:
And you also have observers for saved, updated and deleted.