This commit is contained in:
2018-11-22 22:06:16 -06:00
parent 8be4163128
commit 8ba46f892a

View File

@@ -49,13 +49,11 @@ class CorpJournal extends Command
$finance = new Finances();
//Get the corps with structures logged in the database
$structures = DB::table('CorpStructures')->first();
var_dump($structures);
printf($structures);
//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) {
var_dump($structure);
}
}
}