Configuration
You can publish the config file with:
1php artisan vendor:publish --provider="Coderflex\\Laravisit\\LaravisitServiceProvider"
then, run database migration
1php artisan migrate
This is the contents of the published config file:
1return [ 2 /* 3 |-------------------------------------------------------------------------- 4 | User Namespace 5 |-------------------------------------------------------------------------- 6 | 7 | This value informs Laravist which namespace you will be 8 | selecting to get the user model instance 9 | If this value equals to null, "\Coderflex\Laravisit\Models\User" will be used10 | by default.11 |12 */13 'user_namespace' => "\Coderflex\Laravisit\Models\User",14];