├── .editorconfig ├── .gitignore ├── .styleci.yml ├── LICENSE.md ├── README.md ├── composer.json ├── composer.lock └── src ├── Database └── Migrations │ ├── 0000_00_00_000000_create_visits_table.php │ └── 0000_00_00_100000_add_index_on_visitable_id_type_date.php ├── LaravelPopularServiceProvider.php ├── Models └── Visit.php └── Traits └── Visitable.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordanmiguel/laravel-popular/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordanmiguel/laravel-popular/HEAD/.gitignore -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: psr2 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordanmiguel/laravel-popular/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordanmiguel/laravel-popular/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordanmiguel/laravel-popular/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordanmiguel/laravel-popular/HEAD/composer.lock -------------------------------------------------------------------------------- /src/Database/Migrations/0000_00_00_000000_create_visits_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordanmiguel/laravel-popular/HEAD/src/Database/Migrations/0000_00_00_000000_create_visits_table.php -------------------------------------------------------------------------------- /src/Database/Migrations/0000_00_00_100000_add_index_on_visitable_id_type_date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordanmiguel/laravel-popular/HEAD/src/Database/Migrations/0000_00_00_100000_add_index_on_visitable_id_type_date.php -------------------------------------------------------------------------------- /src/LaravelPopularServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordanmiguel/laravel-popular/HEAD/src/LaravelPopularServiceProvider.php -------------------------------------------------------------------------------- /src/Models/Visit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordanmiguel/laravel-popular/HEAD/src/Models/Visit.php -------------------------------------------------------------------------------- /src/Traits/Visitable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordanmiguel/laravel-popular/HEAD/src/Traits/Visitable.php --------------------------------------------------------------------------------