161 lines
8.3 KiB
PHP
161 lines
8.3 KiB
PHP
<div class="pt-4"></div>
|
|
|
|
<!--Site Footer Start-->
|
|
<footer class="site-footer">
|
|
<div class="site-footer__shape-1 float-bob-x"> <img src="rohini/assets/images/shapes/site-footer-shape-1.png"
|
|
alt="">
|
|
</div>
|
|
<div class="site-footer__shape-2 float-bob-y"> <img src="rohini/assets/images/shapes/site-footer-shape-2.png"
|
|
alt="">
|
|
</div>
|
|
<div class="container">
|
|
<div class="site-footer__top ">
|
|
<div class="row">
|
|
<div class="col-xl-3 col-lg-6 col-md-6 wow fadeInUp" data-wow-delay="100ms">
|
|
<div class="footer-widget__column footer-widget__about">
|
|
<div class="footer-widget__logo"> <a href="{{ route('home') }}"><img
|
|
src="{{ asset(setting('logo_white')) }}" alt=""></a> </div>
|
|
<p class="footer-widget__about-text text-white">{{setting('description')}}</p>
|
|
<div class="site-footer__social">
|
|
@if(setting('facebook'))<a href="{{ setting('facebook') }}" target="_blank"><i class="icon-facebook-app-symbol"></i></a>@endif
|
|
@if(setting('whatsapp'))<a href="{{ setting('whatsapp') }}" target="_blank"><i class="fab fa-whatsapp"></i></a>@endif
|
|
@if(setting('viber'))<a href="{{ setting('viber') }}" target="_blank"><i class="fab fa-viber"></i></a>@endif
|
|
@if(setting('instagram'))<a href="{{ setting('instagram') }}" target="_blank"><i class="fab fa-instagram"></i></a>@endif
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@foreach ($footerMenus as $menu)
|
|
<div @class([
|
|
'col-xl-3 col-lg-6 col-md-6 wow fadeInUp' => $loop->first,
|
|
'col-xl-2 col-lg-6 col-md-6 wow fadeInUp' => !$loop->first,
|
|
])>
|
|
<div @class([
|
|
'footer-widget__column footer-widget__usefull-link' => $loop->first,
|
|
'footer-widget__column footer-widget__services' => !$loop->first,
|
|
]) class="">
|
|
<div class="footer-widget__title-box">
|
|
<h3 class="footer-widget__title">{{ $menu->title }}</h3>
|
|
</div>
|
|
<div class="footer-widget__link-box">
|
|
<ul class="footer-widget__link list-unstyled footer-link">
|
|
@if ($menu->hasSubMenu())
|
|
@foreach ($menu->children as $subMenu)
|
|
<li><a href="{{ $subMenu->route_name }}">{{ $subMenu->title }}</a></li>
|
|
@endforeach
|
|
@endif
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endforeach
|
|
<div class="col-xl-3 col-lg-6 col-md-6 wow fadeInUp" data-wow-delay="400ms">
|
|
<div class="footer-widget__column footer-widget__instagram">
|
|
<div class="footer-widget__title-box">
|
|
<h3 class="footer-widget__title">Social Media</h3>
|
|
</div>
|
|
{{-- <div class="fb-page" data-href="{{ setting('facebook') }}" data-tabs="timeline" data-width=""
|
|
data-height="250" data-small-header="true" data-adapt-container-width="true"
|
|
data-hide-cover="true" data-show-facepile="false">
|
|
<blockquote cite="{{ setting('facebook') }}" class="fb-xfbml-parse-ignore"><a
|
|
href="{{ setting('facebook') }}">Rohini International Education
|
|
Services</a></blockquote>
|
|
</div> --}}
|
|
<div class="fb-page"
|
|
data-href="{{ setting('facebook') }}"
|
|
data-tabs="timeline"
|
|
data-width="323"
|
|
data-height="270"
|
|
data-small-header="false"
|
|
data-adapt-container-width="true"
|
|
data-hide-cover="false"
|
|
data-show-facepile="false">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{-- <div class="site-footer__bottom">
|
|
<div class="container">
|
|
<div class="row text-center">
|
|
<div class="col-lg-10 mx-auto">
|
|
<p class="site-footer__bottom-text text-white pt-4 pb-4">{{ setting('copyright') }}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="container">
|
|
<div class="row text-center">
|
|
<div class="col-lg-10 mx-auto">
|
|
<p class="site-footer__bottom-text text-white pt-4 pb-4"> Designed By: Bibhuti Solutions</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> --}}
|
|
|
|
|
|
<div class="site-footer__bottom">
|
|
<div class="container">
|
|
<div class="row justify-content-between align-items-center text-center text-lg-start">
|
|
<div class="col-lg-6 col-12 mb-2 mb-lg-0">
|
|
<p class="site-footer__bottom-text text-white pt-4 pb-4 mb-0">
|
|
{{ setting('copyright') }}
|
|
</p>
|
|
</div>
|
|
<div class="col-lg-6 col-12 text-lg-end">
|
|
<p class="site-footer__bottom-text text-white pt-4 pb-4 mb-0">
|
|
{{-- <a href="https://bibhutisolutions.com/" target="_blank" style="color: #fff; text-decoration: underline;">Designed By: Bibhuti Solutions</a> --}}
|
|
<a href="https://bibhutisolutions.com/" target="_blank"
|
|
style="color: #fff; text-decoration: none;"
|
|
onmouseover="this.style.textDecoration='underline'"
|
|
onmouseout="this.style.textDecoration='none'">
|
|
Designed By: Bibhuti Solutions
|
|
</a>
|
|
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</footer>
|
|
<!--Site Footer End-->
|
|
|
|
<!-- /.page-wrapper -->
|
|
|
|
<div class="mobile-nav__wrapper">
|
|
<div class="mobile-nav__content"> <span class="mobile-nav__close mobile-nav__toggler"><i
|
|
class="fa fa-times"></i></span>
|
|
<div class="logo-box"> <a href="{{ route('home') }}" aria-label="logo image"><img
|
|
src="{{ asset(setting('logo_white')) }}" width="145" alt="" /></a> </div>
|
|
<div class="mobile-nav__container"></div>
|
|
|
|
<ul class="mobile-nav__contact list-unstyled">
|
|
<li> <i class="fa fa-envelope"></i> <a href="mailto:{{ setting('email') }}">{{ setting('email') }}</a>
|
|
</li>
|
|
<li> <i class="fa fa-phone-alt"></i> <a href="tel:{{ setting('phone') }}">{{ setting('phone') }}</a> </li>
|
|
</ul>
|
|
<!-- /.mobile-nav__contact -->
|
|
<div class="mobile-nav__top">
|
|
<div class="mobile-nav__social">
|
|
@if(setting('facebook'))<a href="{{ setting('facebook') }}" target="_blank"><i class="icon-facebook-app-symbol"></i></a>@endif
|
|
@if(setting('whatsapp'))<a href="{{ setting('whatsapp') }}" target="_blank"><i class="fab fa-whatsapp"></i></a>@endif
|
|
@if(setting('viber'))<a href="{{ setting('viber') }}" target="_blank"><i class="fab fa-viber"></i></a>@endif
|
|
@if(setting('instagram'))<a href="{{ setting('instagram') }}" target="_blank"><i class="fab fa-instagram"></i></a>@endif
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="search-popup">
|
|
<div class="search-popup__overlay search-toggler"></div>
|
|
<div class="search-popup__content">
|
|
<form action="#">
|
|
<label for="search" class="sr-only">search here</label>
|
|
<!-- /.sr-only -->
|
|
<input type="text" id="search" placeholder="Search Here..." />
|
|
<button type="submit" aria-label="search submit" class="thm-btn"> <i
|
|
class="icon-search-interface-symbol"></i> </button>
|
|
</form>
|
|
</div>
|
|
</div>
|