I wish to add company_id column #815
-
Hello I am developing multi-tanent software. I have used company_id everywhere. There is anyway to add company_id column though I did not understand tap method clearly. Detail answer will be greatly appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hey, laravel-activitylog/src/ActivityLogger.php Lines 63 to 74 in ade270f laravel-activitylog/src/ActivityLogger.php Lines 225 to 235 in ade270f The observer is the easiest way as it will not conflict with future releases and you don't have to copy code from the package. |
Beta Was this translation helpful? Give feedback.
Hey,
the easiest way to do this would be an observer for the activity model.
Another solution would be to override and rebind the `` class and adjust one of the methods:
laravel-activitylog/src/ActivityLogger.php
Lines 63 to 74 in ade270f
laravel-activitylog/src/ActivityLogger.php
Lines 225 to 235 in ade270f