PHP code example of grafstorm / hittase-php-api-for-laravel
1. Go to this page and download the library: Download grafstorm/hittase-php-api-for-laravel library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
grafstorm / hittase-php-api-for-laravel example snippets
// Hitta.se API Wrapper as a Laravel Package
// Search for Swedish companies and people
// Combined search. You can also explicitly call Hitta::combined()
Hitta::what('Luke Skywalker')
->where('Kiruna')
->find();
$result = Hitta::combined()
->what('Empire')
->where('Deathstar')
->find();
foreach($result->companies as $company) {
echo $company->displayName . "\n";
}
foreach($result->people as $person) {
echo $person->displayName . "\n";
}
// Only Search for people
Hitta::people()
->what('Luke Skywalker')
->find();
// Only Search for companies
Hitta::companies()
->what('Empire')
->find();
// Optional search parameters
Hitta::companies()
->what('Luke Skywalker')
->where('Kiruna')
->pageNumber(1)
->pageSize(10)
->rangeFrom(100)
->rangeTo(150)
->find();
// Fetching details of a company or person with findPerson and findCompany.
$result = Hitta::people()
->what('Luke Skywalker')
->find();
$personId = collect($result->people)->first()->id;
$companyId = collect($result->companies)->first()->id;
Hitta::findPerson($personId);
Hitta::findCompany($companyId);