please help me, i have a trouble
tangyus opened this issue · 6 comments
when i try to use
use Weboap\Visitor\Visitor;
Visitor::log();
and i get a exception.
Non-static method Weboap\Visitor\Visitor::log() should not be called statically.
could help me?
my laravel version is laravel 5.5.
could i use \Weboap\Visitor\VisitorServiceProvider::class;
in config/app.php?
but when i use \Weboap\Visitor\VisitorServiceProvider::class;
and same exception!
i try use Visitor; // package of facade...
but i can not find this package facade, only VisitorFacade // package of Weboap\Visitor\Facades\VisitorFacade!!!
\Weboap\Visitor\VisitorServiceProvider::class, in config/app.php
use Weboap\Visitor\Facades\VisitorFacade;
public function index(Request $request, VisitorFacade $visitor, $id)
{
$visitor->log();
......
}
new exception
Call to undefined method Weboap\Visitor\Facades\VisitorFacade::log()
sorry for the delay, you should be able to use
use Vistor;
Visitor::log();
Visitor/src/VisitorServiceProvider.php
Line 76 in f8ba976
the Visitor Facade is been registered automatically withing the service provider registered at the config.php file
let me know.
can we use Mysql database for this package?? if yes then how can we use that? please hel me out with this.
Kind regards
yes, it requires MySQL to function properly, also built to function within laravel framework,
just add it to your laravel 5.5 and higher composer.json.. (composer require weboap/visitor ), then configure your config/database.php from that point you can follow the instructions in the read me file,
php artisan vendor:publish to publish the migration of visitor_registery table,
php artisan migrate to migrate the table to your database,
at that point you are ready to go
Visitor::log(); //log in db visitor ip, geo location, hit counter....
see Usage section of the read me file.
yes i have implemented it yesterday, actually i was using localhost and i forgot to comment the value "localhost" in the 'ignored' array, and it works for the localhost also for now.
it's working great.
thanks alot #weboAp