testing new mining tax

This commit is contained in:
2021-05-25 01:57:39 +09:00
parent c0d65d55d1
commit 98db7a3ec2

View File

@@ -98,8 +98,6 @@ class TestController extends Controller
} }
} }
dd($mains);
/** /**
* For each of the users, let's determine if there are any ledgers, * For each of the users, let's determine if there are any ledgers,
* then determine if there are any alts and ledgers associated with the alts. * then determine if there are any alts and ledgers associated with the alts.
@@ -111,14 +109,14 @@ class TestController extends Controller
//Count the ledgers for the main //Count the ledgers for the main
$mainLedgerCount = Ledger::where([ $mainLedgerCount = Ledger::where([
'character_id' => $main->character_id, 'character_id' => $main,
'invoiced' => 'Yes', 'invoiced' => 'Yes',
])->where('last_updated', '>', Carbon::now()->subMonths(3))->count(); ])->where('last_updated', '>', Carbon::now()->subMonths(3))->count();
//If there are ledgers for the main, then let's grab them //If there are ledgers for the main, then let's grab them
if($mainLedgerCount > 0) { if($mainLedgerCount > 0) {
$mainLedgers = Ledger::where([ $mainLedgers = Ledger::where([
'character_id' => $main->character_id, 'character_id' => $main,
'invoiced' => 'Yes', 'invoiced' => 'Yes',
])->where('last_updated', '>', Carbon::now()->subMonths(3))->get(); ])->where('last_updated', '>', Carbon::now()->subMonths(3))->get();
@@ -138,11 +136,11 @@ class TestController extends Controller
} }
//Get the alt count for the main character //Get the alt count for the main character
$altCount = $main->altCount(); $altCount = UserAlt::where(['main_id' => $main])->count();
//If more than 0 alts, grab all the alts. //If more than 0 alts, grab all the alts.
if($altCount > 0) { if($altCount > 0) {
$alts = UserAlt::where([ $alts = UserAlt::where([
'main_id' => $main->character_id, 'main_id' => $main,
])->get(); ])->get();
//Cycle through the alts, and get the ledgers, and push onto the stack //Cycle through the alts, and get the ledgers, and push onto the stack