@php $ad = $ads->where('ad_size','320x480')->first(); @endphp
@if($ad)
@else
{{--
Ad space available: 320x480
--}}
@endif
@php $ad = $ads->where('ad_size','320x100')->first(); @endphp
@if($ad)
@else
{{--
Ad space available: 320x100
--}}
@endif
@php $ad = $ads->where('ad_size','320x50')->first(); @endphp
@if($ad)
@else
{{--
Ad space available:320x50
--}}
@endif
@php $ad = $ads->where('ad_size','300x100')->first(); @endphp
@if($ad)
@else
{{--
Ad space available: 300x100
--}}
@endif
@php $ad = $ads->where('ad_size','300x50')->first(); @endphp
@if($ad)
@else
{{--
Ad space available: 300x50
--}}
@endif