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, ".", ",") . "
"; }