From 5df56e7f4f3a39ae67a1144e106ebae9702fcafc Mon Sep 17 00:00:00 2001 From: drkthunder02 Date: Thu, 25 Feb 2021 22:44:14 +0900 Subject: [PATCH] mining taxes invoices --- app/Console/Commands/MiningTaxes/MiningTaxesInvoices.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/Console/Commands/MiningTaxes/MiningTaxesInvoices.php b/app/Console/Commands/MiningTaxes/MiningTaxesInvoices.php index 58f082496..97d0ddb40 100644 --- a/app/Console/Commands/MiningTaxes/MiningTaxesInvoices.php +++ b/app/Console/Commands/MiningTaxes/MiningTaxesInvoices.php @@ -120,8 +120,7 @@ class MiningTaxesInvoices extends Command //Create the mail body $body .= "Dear Miner,

"; $body .= "Mining Taxes are due for the following ores mined from alliance moons:
"; - foreach($rows as $ore => $quantity) { - dd($quantity); + foreach($ores as $ore => $quantity) { $oreName = $lookup->ItemIdToName($ore); $body .= $oreName . ": " . number_format($quantity, 0, ".", ",") . "
"; }