80 lines
4.7 KiB
PHP
80 lines
4.7 KiB
PHP
<footer class="footer @if (request()->routeIs('home') || request()->routeIs('category') || request()->routeIs('subCategory') || request()->routeIs('search')) d-non @endif">
|
|
<div class="footer__top">
|
|
<div class="container">
|
|
<div class="row mb-none-30">
|
|
<div class="col-lg-4 col-sm-8 mb-50">
|
|
<div class="footer-widget">
|
|
<a href="{{ route('home') }}"><img class="mb-4" width="200" height="40" src="{{ asset('images/logo.svg') }}" alt="image"></a>
|
|
<p>123movies is the top website for watching an unlimited selection of free movies and TV shows online. There's no sign up required and it's easy to find something to watch with our intuitive search and user interface.</p>
|
|
<ul class="social-links mt-3">
|
|
{{-- @foreach ($socials as $social)
|
|
<li><a href="{{ @$social->data_values->url }}">@php echo @$social->data_values->social_icon @endphp</a></li>
|
|
@endforeach --}}
|
|
</ul>
|
|
</div><!-- footer-widget end -->
|
|
</div>
|
|
<div class="col-lg-2 col-sm-4 mb-50">
|
|
<div class="footer-widget">
|
|
<h4 class="footer-widget__title">@lang('Short Links')</h4>
|
|
<ul class="link-list">
|
|
{{-- @foreach ($links as $link)
|
|
<li><a href="{{ route('links', [$link->id, slug($link->data_values->title)]) }}">{{ __($link->data_values->title) }}</a></li>
|
|
@endforeach --}}
|
|
</ul>
|
|
</div><!-- footer-widget end -->
|
|
</div>
|
|
<div class="col-lg-2 col-sm-4 mb-50">
|
|
<div class="footer-widget">
|
|
<h4 class="footer-widget__title">@lang('Category')</h4>
|
|
<ul class="link-list">
|
|
{{-- @foreach ($categories as $category)
|
|
<li><a href="{{ route('category', $category->id) }}">{{ __($category->name) }}</a></li>
|
|
@endforeach --}}
|
|
</ul>
|
|
</div><!-- footer-widget end -->
|
|
</div>
|
|
<div class="col-lg-4 col-sm-8 mb-50">
|
|
<div class="footer-widget">
|
|
<h4 class="footer-widget__title">Subscribe News Letter</h4>
|
|
<p>Please Subscribe For Getting Updated With Us</p>
|
|
<form class="subscribe-form mt-3">
|
|
@csrf
|
|
<input name="email" type="email" placeholder="@lang('Email Address')">
|
|
<button type="submit"><i class="fas fa-paper-plane"></i></button>
|
|
</form>
|
|
<div class="download-links">
|
|
<a class="download-links__item" href="javascript:void(0);">
|
|
<img class="lazy" data-src="{{asset('images/google_play.png')}}" alt="Google Play">
|
|
</a>
|
|
<a class="download-links__item" href="javascript:void(0);">
|
|
<img class="lazy" data-src="{{asset('images/app_store.png')}}" alt="Apple App Store">
|
|
</a>
|
|
|
|
{{-- @foreach ($footerElement as $footer)
|
|
<a class="download-links__item" href="#" target="_blank">
|
|
<img src="{{ getImage('assets/images/frontend/footer/' . @$footer->data_values->store_image, '150x45') }}" alt="@lang('image')">
|
|
</a>
|
|
@endforeach --}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div><!-- footer__top end -->
|
|
<div class="footer__bottom">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-md-6 text-md-left text-center">
|
|
<p>@lang('All rights & Copyright reserved by') <a href="{{ route('home') }}">{{ config('app.name') }}</a></p>
|
|
</div>
|
|
<div class="col-md-6 mt-md-0 mt-3">
|
|
<ul class="links justify-content-md-end justify-content-around">
|
|
{{-- @foreach ($policies as $policy)
|
|
<li><a href="{{ route('policies', [$policy->id, slug($policy->data_values->title)]) }}">{{ __($policy->data_values->title) }}</a></li>
|
|
@endforeach --}}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</footer>
|