@php $cards = $cards ?? collect(); @endphp @if($cards->isNotEmpty())
@foreach($cards as $card) @php $href = $card['button_link'] ?? route('frontend.products'); if (! preg_match('#^https?://#i', $href)) { $href = url($href); } $img = \App\Services\HomepagePromoCardsService::imageUrl($card['image'] ?? ''); $bg = $card['bg_color'] ?? '#ffffff'; @endphp

{{ $card['title'] }}

@if(!empty($card['subtitle']))

{{ $card['subtitle'] }}

@endif {{ $card['button_text'] ?? 'Shop Now' }}
@if($img) @endif
@endforeach
@endif