laravision/visiteur

Analayse visiteurs system

dev-master 2017-07-12 22:18 UTC

This package is not auto-updated.

Last update: 2024-04-13 17:41:21 UTC


README

Version License Total Downloads

This package expects that you are using Laravel 5.1 or above.

Laravision Crud

Install

In order to install Laravel 5 Laravision Visiteur :

  1. You will need to import the laravision/visiteur package via composer:
composer require laravision/visiteur
  1. Add the service provider to your config/app.php file within the providers key:
// ...
'providers' => [
    /*
     * Package Service Providers...
     */

    Laravision\Crud\VisiteurServiceProvider::class,
],
// ...
  1. Add the aliases to your config/app.php file within the aliases key:
// ...  

'aliases' => [ 

    /*
     * Package Class Aliases...
     */
        'Visiteur' => Laravision\Visiteur\VisiteurFacade::class,

    ],
// ...

Usage

  • Run the script in your middleware :
Visiteur::run();

License

Laravision Visiteur is free and open-sourced software distributed under the terms of the MIT license.

Note

Please report any issue you find in the issues page.
Pull requests are welcome.