From 3799d514ee6c655048bf4022ca8f39e5cae2402f Mon Sep 17 00:00:00 2001 From: drkthunder02 Date: Thu, 22 Nov 2018 20:27:09 -0600 Subject: [PATCH] structure testing --- app/Console/Commands/corpJournal.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/Console/Commands/corpJournal.php b/app/Console/Commands/corpJournal.php index db50678dd..89af8124e 100644 --- a/app/Console/Commands/corpJournal.php +++ b/app/Console/Commands/corpJournal.php @@ -51,9 +51,11 @@ class corpJournal extends Command //Get the characters that have the esi-wallet.read_corporation_wallets.v1 //esi wallet scope $characters = DB::table('EsiScopes')->where('scope', 'esi-wallet.read_corporation_wallets.v1')->get(); - + //For each structure let's attemp to gather the characters owning the structures and peer into their wallets. foreach($structures as $structure) { foreach($characters as $char) { + var_dump($structure->character_id); + dd($char->character_id); if($structure->character_id === $char->character_id) { $finance->GetWalletJournal(1, $char->character_id); }