0.1.0
The initial release of the Laravel Page Visits Counter package.
Added
- A config file that can be published to the users Laravel application.
- A database migration file that can be published to the users Laravel application.
- A Laravel service provider for integrating this package into Laravel applications.
- An README.md with project details and documentation.
- This CHANGELOG.md file.
- A .styleci.yml file with settings.
- The files:
.gitattributes
,.gitignore
,composer.json
andphpunit.xml
. - A trait (
HasPageVisitsCounter
) that can be added to Eloquent models. - A default Eloquent model (
PageVisit
) for storing the page visits into the database. - A contract for the
PageVisit
Eloquent model because it can be changed within the configuration file. It uses Laravels Service Container to updates this automatically.