@inject('Service', 'App\Services\Service') @php $param = 'tokenomics_a'; // Adjust this parameter as needed @endphp
@php $tokenomics = method_exists($Service, 'get') ? $Service->get($param) : []; @endphp @forelse ($tokenomics as $group)

{{ $group['group'] ?? 'No Group Name' }}

    @forelse ($group['actions'] ?? [] as $action)
  • {{ $action['title'] ?? 'No Title' }}

    {{ $action['description'] ?? 'No description available.' }}

  • @empty
  • No actions available for this group.
  • @endforelse
@empty

No tokenomics data available.

@endforelse