I am developing a data management system in PHP Laravel 5 .
On this system I want to put a Logs System.
1 - Does Laravel have any library that facilitates this system?
2 - If Laravel does not have the best way to do such a system?
3 - How can I model the data in the database?
I thought of the following case:
User So-and-so (who) changed / created / deleted / forwarded (action) 11/2015 (when) .
And I thought of a simple table with the following columns:
ID_LOG
ID_USER
ACAO
DESCRICAO
DATA
Maybe the question is wide when I use the expressions 'what's the best way' or 'how can I do it'.
My main question is whether Laravel can make things easier for me.