From 4d189b2f63e308a929a898063026844a3a850ea7 Mon Sep 17 00:00:00 2001 From: drkthunder02 Date: Tue, 1 Jan 2019 02:19:24 -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 b4e36732b..5761c1d45 100644 --- a/app/Console/Commands/calculatemarkettax.php +++ b/app/Console/Commands/calculatemarkettax.php @@ -82,7 +82,7 @@ class CalculateMarketTax extends Command $finalTaxes = 0.00; } - $finalTaxes = number_format($finalTaxes, 2, '.', ','); + //$finalTaxes = number_format($finalTaxes, 2, '.', ','); //Get the info about the structures from the database $info = CorpStructure::where(['corporation_id' => $corp->corporation_id])->first(); @@ -118,7 +118,7 @@ class CalculateMarketTax extends Command 'Month: ' . $start->month . '
Market Taxes Owed: ' . - $finalTaxes . + number_format($finalTaxes, 2, '.', ',') . '
Please remit to Spatial Forces'; try { $this->line('Attemping to send the mail.');