This commit is contained in:
2021-03-22 00:41:04 +09:00
parent 8178af420a
commit 92ea143a92
@@ -101,16 +101,16 @@ class MiningTaxesInvoicesNew extends Command
//Build a character Id list for the characters before processing the ledgers.
$alts = UserAlt::where([
'main_id' => $mainId,
'main_id' => 95366854,
])->get();
dd($alts);
//Get the ledgers for the main character
$rows = Ledger::where([
'character_id' => $mainId,
'character_id' => 95366854,
])->get();
dd($rows);
foreach($alts as $alt) {
$altLedger = Ledger::where([
'character_id' => $alt->character_id,