Level 37
https://spatie.be/docs/laravel-activitylog/v4/introduction
You can add in Your auth if a user logged in. Example:
activity()
->performedOn($anEloquentModel)
->causedBy($user)
->log('Login');
Auth::login($user, $remember);
The same with view pages or You create a middleware for this.