troubleshooting

This commit is contained in:
2018-12-24 12:11:34 -06:00
parent e02a0b0f54
commit 24a39c492d

View File

@@ -63,7 +63,7 @@ class CorpJournal extends Command
//Get the corps with structures logged in the database
$corps = DB::table('CorpStructures')->select('corporation_id')->groupBy('corporation_id')->get();
foreach($corps as $corp) {
$charId = DB::table('CorpStructures')->select('character_id')->where(['corporation_id' => $corp->corporation_id])->first();
$charId = CorpStructure::where(['corporation_id' => $corp->corporation_id])->select('character_id')->first();
$this->line($charId);
$finance->GetWalletJournal(1, $charId);
}