ledger stuff for users
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user