laravel-visits
laravel-visits copied to clipboard
Get visits of Item for specific date range?
Hi, how one can get the visits count for a specific item for a specific date range?
I.e., to get all of them one can do:
$post = Post::firstOrFail();
visits($post)->count()
What if i want the visits count from date X to date Y (including both dates)?