25 lines
958 B
PHP

@inject('Service', 'App\Services\Service')
@php
$param = 'overview_c'; // Set this to the value you want to pass
@endphp
<!-- Row for Insights List -->
<div class="col-12">
<h3>INSIGHTS</h3>
@if(method_exists($Service, 'get'))
<ul class="list-group list-group-flush">
@forelse ($Service->get($param) as $insight)
<li class="list-group-item list-group-item-action">
<a href="{{ $insight['url'] ?? '#' }}">
<h3>{{ $insight['title'] ?? 'No Title' }}</h3>
<p>{{ $insight['description'] ?? 'No description available.' }}</p>
</a>
</li>
@empty
<li class="list-group-item">No insights available.</li>
@endforelse
</ul>
@else
<p>The insights service is not available.</p>
@endif
</div>