ledger stuff for users

This commit is contained in:
2021-03-21 01:25:20 +09:00
parent 9c773bc635
commit 223a457f93
2 changed files with 2 additions and 4 deletions

View File

@@ -245,9 +245,7 @@ class MiningTaxesController extends Controller
$structureInfo = $sHelper->GetStructureInfo($obs->observer_id);
//Add the name to the structures array
array_push($structures, [
'name' => $structureInfo->name,
]);
array_push($structures, $structureInfo->name);
/**
* Get the ledger from each observer.
* We don't care about observer type as it can only be an Athanor or Tatara

View File

@@ -11,7 +11,7 @@
<ul class="nav nav-pills">
@foreach($structures as $structure)
<li class="nav-item">
<a class="nav-link" data-toggle="pill" href="#W4RP-{!! $structure !!}">{!! $structure !!}</a>
<a class="nav-link" data-toggle="pill" href="#W4RP-{{ $structure }}">{{ $structure }}</a>
</li>
@endforeach
</ul>