mining taxes invoices

This commit is contained in:
2021-02-25 22:44:14 +09:00
parent bd068037cd
commit 5df56e7f4f

View File

@@ -120,8 +120,7 @@ class MiningTaxesInvoices extends Command
//Create the mail body
$body .= "Dear Miner,<br><br>";
$body .= "Mining Taxes are due for the following ores mined from alliance moons: <br>";
foreach($rows as $ore => $quantity) {
dd($quantity);
foreach($ores as $ore => $quantity) {
$oreName = $lookup->ItemIdToName($ore);
$body .= $oreName . ": " . number_format($quantity, 0, ".", ",") . "<br>";
}