@php use Illuminate\Support\Facades\Storage; $ads = \App\Models\AdSlot::getActiveAds($slotKey ?? ''); @endphp @if($ads->isNotEmpty())
@if(!empty($title))
{{ $title }}
@endif
@foreach($ads as $ad) @php $url = route('ads.redirect', $ad->id); $target = $ad->link_target ?: '_blank'; @endphp @if($ad->image) {{ $ad->title }} @endif
{{ $ad->title }}
@if($ad->description)
{{ $ad->description }}
@endif
@endforeach
@endif