├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── config └── laravisit.php ├── database └── migrations │ └── create_laravisits_table.php.stub └── src ├── Concerns ├── CanVisit.php ├── FilterByPopularityTimeFrame.php ├── HasVisits.php └── SetsPendingIntervals.php ├── Exceptions ├── InvalidDataException.php └── VisitException.php ├── LaravisitServiceProvider.php ├── Models ├── User.php └── Visit.php ├── PendingVisit.php └── Presenters └── VisitPresenter.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderflexx/laravisit/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderflexx/laravisit/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderflexx/laravisit/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderflexx/laravisit/HEAD/composer.json -------------------------------------------------------------------------------- /config/laravisit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderflexx/laravisit/HEAD/config/laravisit.php -------------------------------------------------------------------------------- /database/migrations/create_laravisits_table.php.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderflexx/laravisit/HEAD/database/migrations/create_laravisits_table.php.stub -------------------------------------------------------------------------------- /src/Concerns/CanVisit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderflexx/laravisit/HEAD/src/Concerns/CanVisit.php -------------------------------------------------------------------------------- /src/Concerns/FilterByPopularityTimeFrame.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderflexx/laravisit/HEAD/src/Concerns/FilterByPopularityTimeFrame.php -------------------------------------------------------------------------------- /src/Concerns/HasVisits.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderflexx/laravisit/HEAD/src/Concerns/HasVisits.php -------------------------------------------------------------------------------- /src/Concerns/SetsPendingIntervals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderflexx/laravisit/HEAD/src/Concerns/SetsPendingIntervals.php -------------------------------------------------------------------------------- /src/Exceptions/InvalidDataException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderflexx/laravisit/HEAD/src/Exceptions/InvalidDataException.php -------------------------------------------------------------------------------- /src/Exceptions/VisitException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderflexx/laravisit/HEAD/src/Exceptions/VisitException.php -------------------------------------------------------------------------------- /src/LaravisitServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderflexx/laravisit/HEAD/src/LaravisitServiceProvider.php -------------------------------------------------------------------------------- /src/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderflexx/laravisit/HEAD/src/Models/User.php -------------------------------------------------------------------------------- /src/Models/Visit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderflexx/laravisit/HEAD/src/Models/Visit.php -------------------------------------------------------------------------------- /src/PendingVisit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderflexx/laravisit/HEAD/src/PendingVisit.php -------------------------------------------------------------------------------- /src/Presenters/VisitPresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderflexx/laravisit/HEAD/src/Presenters/VisitPresenter.php --------------------------------------------------------------------------------