You can specify on which object the activity is performed by using performedOn:
activity()
->performedOn($someContentModel)
->log('edited');
$lastActivity = Activity::all()->last(); //returns the last logged activity$lastActivity->subject; //returns the model that was passed to `performedOn`;
The performedOn-function has a shorter alias name: on
You can set who or what caused the activity by using causedBy:
activity()
->causedBy($userModel)
->performedOn($someContentModel)
->log('edited');
$lastActivity = Activity::all()->last(); //returns the last logged activity$lastActivity->causer; //returns the model that was passed to `causedBy`;
The causedBy()-function has a shorter alias named: by
If you're not using causedBy the package will automatically use the logged in user.