diff --git a/app/Console/Commands/MiningTaxes/MiningTaxesInvoices.php b/app/Console/Commands/MiningTaxes/MiningTaxesInvoices.php
index 0ce41e17c..58f082496 100644
--- a/app/Console/Commands/MiningTaxes/MiningTaxesInvoices.php
+++ b/app/Console/Commands/MiningTaxes/MiningTaxesInvoices.php
@@ -121,6 +121,7 @@ class MiningTaxesInvoices extends Command
$body .= "Dear Miner,
";
$body .= "Mining Taxes are due for the following ores mined from alliance moons:
";
foreach($rows as $ore => $quantity) {
+ dd($quantity);
$oreName = $lookup->ItemIdToName($ore);
$body .= $oreName . ": " . number_format($quantity, 0, ".", ",") . "
";
}