I've installed the laravel tracker package by antonioribeiro from here
I also installed the stats panel. When I first went to the panel, it said 'authentication required'. So I searched around and found this issue, so I changed that line.
Now when I go to the /stats page on my website, I get the error 'User model misses admin property'.
But my model has that. I have put in the admin property just as instructed on the install page
public function getIsAdminAttribute() {
return true;
}
It appears that tracker is working. I can echo out $tracker = Tracker::currentSession() and everything works there.
I've changed the user models in the tracker config file and enabled the stats panel.
I can't figure out what I'm missing.