Feralheart
Feralheart

Reputation: 1920

Laravel: Visitor tracker

I want to track the visitors of my webapp, but I think tracker is a bit overwhelming(and I don't want to kill my database structure). Someone implemented it successfully and/or use a better alternative?

Upvotes: 0

Views: 835

Answers (1)

online Thomas
online Thomas

Reputation: 9381

I would suggest writing simple middleware that increments a counter based on your needs (per visit / unique IP).

Upvotes: 3

Related Questions