I am not sure with your question. But, If you want to know all activities who created or updated your data into database you can use it with bootable that allow you track action.
public static function boot()
{
parent::boot();
// create a event to happen on updating
static::updating(function ($table) {
$table->updated_by = Auth::user()->id;
});
// create a event to happen on saving
static::saving(function ($table) {
$table->created_by = Auth::user()->id;
});
}