Integration of https://app.usersnap.com/
Require this package with composer.
composer require dazlab/laravel-usersnap-plugin
Laravel 5.5 uses Package Auto-Discovery, so doesn't require you to manually add the ServiceProvider.
Set USERSNAP_APP_KEY
in .env
.
USERSNAP_ENABLED
is true bu default.
If you don't use auto-discovery, add the ServiceProvider to the providers array in config/app.php
DazLab\Usersnap\ServiceProvider::class,
php artisan vendor:publish --provider="DazLab\Usersnap\ServiceProvider"