From 437cf198baf7a9a6f29bd690d3daf2098d5d2283 Mon Sep 17 00:00:00 2001 From: drkthunder02 Date: Sat, 29 Dec 2018 19:13:47 -0600 Subject: [PATCH] mailer --- app/Console/Commands/calculatemarkettax.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Console/Commands/calculatemarkettax.php b/app/Console/Commands/calculatemarkettax.php index c8efa4a38..ebec17cc4 100644 --- a/app/Console/Commands/calculatemarkettax.php +++ b/app/Console/Commands/calculatemarkettax.php @@ -67,14 +67,14 @@ class CalculateMarketTax extends Command //Get the set of corporations from the structure table $corps = CorpStructure::where(['structure_type' => 'Citadel'])->distinct('corporation_id'); - + var_dump($corps); foreach($corps as $corp) { $finalTaxes = $sHelper->GetTaxes($corp->corporation_id, 'Market', $start, $end); if($finalTaxes < 0.00) { $finalTaxes = 0.00; } - + $finalTaxes = number_format($finalTaxes, 2, '.', ','); $this->line('Final Taxes are: ' . $finalTaxes);