users page updated

This commit is contained in:
2021-03-20 23:36:53 +09:00
parent e2289f1727
commit abc34b315a
2 changed files with 10 additions and 130 deletions

View File

@@ -251,10 +251,10 @@ class MiningTaxesController extends Controller
if($ledgers != null) {
foreach($ledgers as $ledger) {
//Get the structure name from the database
$structure = $sHelper->GetStructureInfo($obs->observer_id);
$structureInfo = $sHelper->GetStructureInfo($obs->observer_id);
array_push($miningLedgers, [
'structure' => $structure->name,
'structure' => $structureInfo->name,
'character' => auth()->user()->getName(),
'corpTicker' => $corpInfo->ticker,
'ore' => $ore,
@@ -263,7 +263,7 @@ class MiningTaxesController extends Controller
]);
array_push($structures, [
'name' => $structure->name,
'name' => $structureInfo->name,
]);
}
} else {