esi lookup helper

This commit is contained in:
2019-12-12 00:29:22 -06:00
parent 766236a78c
commit 9c36a10864
2 changed files with 4 additions and 1 deletions
+3 -1
View File
@@ -12,7 +12,9 @@ class TestController extends Controller
public function displayCharTest() {
$lookup = new LookupHelper;
$char = $lookup->GetCharacterInfo(93738489);
$config = config('esi');
$char = $lookup->GetCharacterInfo($config['primary']);
return view('test.char.display')->with('char', $char);
}
+1
View File
@@ -169,6 +169,7 @@ class LookupHelper {
]);
} catch(RequestFailedException $e) {
Log::warning('Failed to get character information in GetCharacterInfo in Lookup');
dd($e);
return null;
}