@include('frontend.layouts.master') @php $protocol = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off') || $_SERVER['SERVER_PORT'] == 443 ? 'https://' : 'http://'; $CurPageURL = $protocol . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']; $url = $CurPageURL; // dd($_SERVER['REQUEST_URI']); // dd($url); $pageBanner = \App\Models\PageSlider::banner($url); @endphp @if (!empty($pageBanner))
@if ($pageBanner->top_heading)
{{ $pageBanner->top_heading }}
@endif

{{ $pageBanner->title }}

@if ($pageBanner->description)

{{ $pageBanner->description }}

@endif
@endif
@if ( (!empty($governmentAssoc) && $governmentAssoc->count() > 0) || (!empty($educationAssoc) && $educationAssoc->count() > 0) || (!empty($skillAssoc) && $skillAssoc->count() > 0) || (!empty($otherAssoc) && $otherAssoc->count() > 0))
{{--
WHERE CAN WE HELP YOU

Be The First
Generation Entrepreneur

Lorem ipsum dolor sit amet consectetur adipisicing elit. Doloribus ducimus unde minus modi nulla iste saepe.

--}}
@if (!empty($governmentAssoc) && $governmentAssoc->count() > 0)

Goverment Institutions

@foreach ($governmentAssoc as $governmentAss)
@endforeach
@endif @if (!empty($educationAssoc) && $educationAssoc->count() > 0)

Education Institutions

@foreach ($educationAssoc as $educationAss)
@endforeach
@endif @if (!empty($skillAssoc) && $skillAssoc->count() > 0)

Skill Councils

@foreach ($skillAssoc as $skillAss)
@endforeach
@endif @if (!empty($otherAssoc) && $otherAssoc->count() > 0)

Other Institutions

@foreach ($otherAssoc as $otherAss)
@endforeach
@endif
@endif @include('frontend.layouts.footerbar')