@extends('businessLayout::index')
@section('pageContent')
@if($adsList->isNotEmpty())
@foreach ($adsList as $adData)
@include('business::ads.parts.index.ad-card', [
'adData' => $adData
])
@endforeach
@else
@if($type == 'all')
@elseif($type == 'active')
@else
@endif
@endif
@unless($adsList->isEmpty())
{{ $adsList->onEachSide(1)->withQueryString()->links('pagination.index') }}
@endif
@endsection