shadercloud / linktrackinghistory
Keep a record of all the pages a user has visited in their session
Installs: 7
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/shadercloud/linktrackinghistory
Requires
- php: ^7.4|^8.0
- illuminate/support: ^8.0|^9.0
Requires (Dev)
- orchestra/testbench: ^6.0
- phpunit/phpunit: ^9.0
This package is auto-updated.
Last update: 2025-10-16 10:23:00 UTC
README
This is a very simple package that allows you to track which pages users have previously been to.
For example if you need to send the user "back 4 pages" you can use this package to do it.
Installation
You can install the package via composer:
composer require shadercloud/linktrackinghistory
Usage
$two_pages_ago = LinkTrackingHistory::linkHistory(2); echo 'You previously visited: '.$two_pages_ago;
The MIT License (MIT). Please see License File for more information.
Laravel Package Boilerplate
This package was generated using the Laravel Package Boilerplate.