akaramires/laravel-fullcontact is a Laravel package for laravel fullcontact.
It currently has 0 GitHub stars and 35.888 downloads on Packagist.
Install it with composer require akaramires/laravel-fullcontact.
Discover more Laravel packages by akaramires
or browse all Laravel packages to compare alternatives.
Last updated
php artisan vendor:publish --provider="Akaramires\FullContact\FullContactServiceProvider"]app/config/app.php add provider:
'Akaramires\FullContact\FullContactServiceProvider'app/config/app.php add alias:
'FullContact' => Akaramires\FullContact\FullContactFacade::class,Lookup by email:
* $person = FullContact::lookupByEmail( '[email protected]' );
Lookup by phone:
* $person = FullContact::lookupByPhone( '123-456-7890' );
Lookup by Twitter:
* $person = FullContact::lookupByTwitter( 'MantelopeMusk' );
Lookup by Facebook:
& $person = FullContact::lookupByFacebook( 'mike-corkum' ,'US' );
* countryCode parameter defaults to US if not provided *
Account Stats:
& $stats = FullContact::accountStats( '2012-08' );
* Period parameter is optional *