Viewing file: front.blade.php (7.3 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<!DOCTYPE html> <html lang="en"> @php $sectionHowItWorks = json_decode(get_settings('section_how_it_work')); @endphp <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>@yield('title')</title>
<link rel="stylesheet" href="{{asset('plugins/toastr/toastr.min.css')}}">
<link rel="stylesheet" href="{{asset('css/adminlte.min.css')}}">
<link rel="stylesheet" href="{{asset('front/vendor/animate/animate.css')}}">
<link rel="stylesheet" href="{{asset('front/css/bootstrap.css')}}">
<link rel="stylesheet" href="{{asset('front/css/maicons.css')}}">
<link rel="stylesheet" href="{{asset('front/vendor/owl-carousel/css/owl.carousel.css')}}">
<link rel="stylesheet" href="{{asset('front/css/theme.css')}}"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="shortcut icon" href="{{asset('uploads/'.get_settings('app_favicon'))}}" type="image/x-icon"> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link href="https://fonts.googleapis.com/css2?family=Inconsolata:wght@300&family=Montserrat:wght@200&family=Poppins:wght@300&display=swap" rel="stylesheet"> @yield('extra-css') @if(isset($sectionHowItWorks->how_it_work_sec_bg_image_file_name)&& $sectionHowItWorks->how_it_work_sec_bg_image_file_name) <style> .faq-section { background-repeat: no-repeat; background-size: cover !important; background: url({{asset('uploads/'.$sectionHowItWorks->how_it_work_sec_bg_image_file_name)}}); } </style> @endif </head> <body>
<!-- Back to top button --> <div class="back-to-top"></div>
<header> <nav class="navbar navbar-expand-lg navbar-light navbar-float"> <div class="container"> @if (get_settings('app_logo')) <a href="{{route('front.index')}}" class="navbar-brand"> <img class="layout-logo" src="{{asset('uploads/'.get_settings('app_logo'))}}" alt=""> </a> @endif <button class="navbar-toggler" data-toggle="collapse" data-target="#navbarContent" aria-controls="navbarContent" aria-expanded="false" aria-label="Toggle navigation"> <span class="navbar-toggler-icon"></span> </button>
<div class="navbar-collapse collapse" id="navbarContent"> <ul class="navbar-nav ml-lg-4 pt-3 pt-lg-0"> <li class="nav-item {{isSidebarActive('front.index*')}}"> <a href="{{route('front.index')}}" class="nav-link">{{trans('admin.home')}}</a> </li> <li class="nav-item"> <a href="#about" class="nav-link">{{trans('admin.about_us')}}</a> </li> <li class="nav-item"> <a href="#what_we_offer" class="nav-link">{{trans('admin.what_we_offer')}}</a> </li> <li class="nav-item"> <a href="#contact" class="nav-link">{{trans('admin.contact')}}</a> </li> </ul>
<div class="ml-auto"> <a href="{{route('login')}}" class="btn btn-outline-primary rounded-pill">{{trans('admin.get_started')}}</a> </div> </div> </div> </nav> </header> @yield('content')
@php $template = json_decode(get_settings('template')); $sectionBanner = json_decode(get_settings('section_banner')); $sectionAbout = json_decode(get_settings('section_about')); $sectionContactUs = json_decode(get_settings('section_contact_us')); @endphp <footer class="page-footer"> <div class="container"> <div class="row justify-content-center"> <div class="col-lg-4 py-3"> @if (get_settings('app_logo')) <a href="{{route('front.index')}}" class="navbar-brand"> <img class="layout-logo" src="{{asset('uploads/'.get_settings('app_logo'))}}" alt=""> </a> @endif @if(isset($sectionAbout->about_sec_description) && $sectionAbout->about_sec_description) <div>{{substr($sectionAbout->about_sec_description,0,100)}} <a href="#about">{{trans('admin.read_more...')}}</a> </div> @endif
</div> <div class="col-lg-4 py-3"> <h5>{{trans('admin.quick_links')}}</h5> <ul class="footer-menu"> <li> <a href="{{route('front.terms')}}">{{trans('admin.terms_and_condition')}}</a> </li> <li> <a href="{{route('front.privacy')}}">{{trans('admin.privacy_and_policy')}}</a> </li> </ul> </div> <div class="col-lg-4 py-3"> <h5>{{trans('admin.subscribe')}}</h5> <form action="{{route('front.customer.contact.store')}}" method="post"> @csrf <div class="row"> <div class="col-lg-8"> <input type="email" name="subscribe_email" class="form-control" placeholder="Enter your mail.." autocomplete="off"> </div> <div class="col-lg-4"> <button type="submit" class="btn btn-primary custom-btn">{{trans('admin.subscribe')}}</button> </div> </div> </form>
</div> </div>
<div class="row"> <div class="col-sm-12 text-center"> <p class="text-center" id="copyright">{{trans('admin.copyright')}} © {{date('Y')}} . {{trans('admin.develop_by')}} <a href="#" target="_blank">{{get_settings('app_name')}}</a> </p> </div> </div> </div> <!-- .container --> </footer> <!-- .page-footer -->
<script src="{{asset('front/js/jquery-3.5.1.min.js')}}"></script>
<script src="{{asset('front/js/bootstrap.bundle.min.js')}}"></script>
<script src="{{asset('front/vendor/wow/wow.min.js')}}"></script>
<script src="{{asset('front/vendor/owl-carousel/js/owl.carousel.min.js')}}"></script>
<script src="{{asset('front/vendor/waypoints/jquery.waypoints.min.js')}}"></script>
<script src="{{asset('front/vendor/animateNumber/jquery.animateNumber.min.js')}}"></script>
<script src="{{asset('front/js/google-maps.js')}}"></script>
<script src="{{asset('front/js/theme.js')}}"></script>
<script src="{{asset('plugins/bootstrap/js/bootstrap.bundle.min.js')}}"></script>
<script src="{{asset('js/adminlte.min.js')}}"></script>
<script src="{{asset('js/custom.js')}}"></script>
@if(session()->has('success') || session()->has('fail') || count($errors)>0) <x-alert :type="session()->get('success')?'success':'danger'" :is-errors="$errors" :message="session()->get('success')??session()->get('fail')"/> @endif @yield('extra-scripts')
</body> </html>
|