JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr{ gilour

File "8822b4eb2e998b9b2438916413b86e6f5e926747.php"

Full Path: /var/www/lionsclub/core/storage/framework/views/8822b4eb2e998b9b2438916413b86e6f5e926747.php
File size: 17.77 KB
MIME-type: text/x-php
Charset: utf-8

<?php

use App\Helpers\Helper;
use App\models\Menu;
?>
<?php
$footer_style = "";
if (Helper::GeneralSiteSettings("style_footer_bg") != "") {
    $bg_file = URL::to('uploads/settings/' . Helper::GeneralSiteSettings("style_footer_bg"));
    $bg_color = Helper::GeneralSiteSettings("style_color1");
    $footer_style = "";//"style='background: $bg_color url($bg_file) no-repeat top 190px left 30px'";
}
if (Helper::GeneralSiteSettings("style_footer") != 1) {
    $footer_style = "style=padding:0";
}
?>
<footer <?php echo $footer_style; ?>>
    <?php if(Helper::GeneralSiteSettings("style_footer")==1): ?>
    <?php
    $bx1w = 3;
    $bx2w = 3;
    $bx3w = 3;
    $bx4w = 3;
    if (count($LatestNews) == 0 && Helper::GeneralSiteSettings("style_subscribe") == 0) {
        $bx1w = 6;
        $bx2w = 6;
        $bx3w = 6;
        $bx4w = 6;
    } elseif (count($LatestNews) == 0 || Helper::GeneralSiteSettings("style_subscribe") == 0) {
        $bx1w = 4;
        $bx2w = 4;
        $bx3w = 4;
        $bx4w = 4;
    }

    ?>
    <style type="text/css">
        footer ul.link-list li a:hover {
            color: #F9C910 !important;
            text-decoration: none;
        }
    </style>
    <div style="font-family:'poppins';" class="container-fluid">
        <div class="row m-0 mobile-view">
            <?php if(count($LatestNews)>0): ?>
            <?php
            $footer_title_var = "title_" . @Helper::currentLanguage()->code;
            $footer_title_var2 = "title_" . env('DEFAULT_LANGUAGE');
            $slug_var = "seo_url_slug_" . @Helper::currentLanguage()->code;
            $slug_var2 = "seo_url_slug_" . env('DEFAULT_LANGUAGE');
            ?>
            <div class="col-lg-<?php echo e($bx2w); ?>">
                <div class="widget footer1">
                    <h4 class="widgetheading"><i class="fa fa-rss"></i>&nbsp; <?php echo e(__('frontend.latestNews')); ?>

                    </h4>
                    <ul class="link-list">
                        <?php $__currentLoopData = $LatestNews; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $LatestNew): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
                        <?php
                        if ($LatestNew->$footer_title_var != "") {
                            $LatestNew_title = $LatestNew->$footer_title_var;
                        } else {
                            $LatestNew_title = $LatestNew->$footer_title_var2;
                        }
                        ?>
                        <li>
                            <a href="<?php echo e(Helper::topicURL($LatestNew->id)); ?>"><?php echo e($LatestNew_title); ?></a>

                        </li>
                        <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
                    </ul>
                </div>
            </div>
            <?php endif; ?>


            <?php if(Helper::GeneralWebmasterSettings("footer_menu_id") >0): ?>
            <?php
            // Get list of footer menu links by group Id
            $FooterMenuLinks = Helper::MenuList(Helper::GeneralWebmasterSettings("footer_menu_id"));
            ?>
            <?php if(count($FooterMenuLinks)>0): ?>
            <div class="col-lg-1 col-md-1 col-sm-1 col-1">

            </div>
            <div class="  col-lg-7 col-md-7 col-sm-7 col-7">
                <!-- <div class="col-lg-<?php echo e($bx3w); ?>"> -->
                <div class="widget footer2">
                    <?php
                    $link_title_var = "title_" . @Helper::currentLanguage()->code;
                    $link_title_var2 = "title_" . env('DEFAULT_LANGUAGE');
                    $slug_var = "seo_url_slug_" . @Helper::currentLanguage()->code;
                    $slug_var2 = "seo_url_slug_" . env('DEFAULT_LANGUAGE');
                    ?>
                    <h4 class="widgetheading"><i class="fa fa-bookmark"></i>&nbsp; <?php echo e(__('frontend.quickLinks')); ?></h4>
                    <ul class="link-list">
                        <?php $__currentLoopData = $FooterMenuLinks; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $FooterMenuLink): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
                        <?php
                        if ($FooterMenuLink->$link_title_var != "") {
                            $link_title = $FooterMenuLink->$link_title_var;
                        } else {
                            $link_title = $FooterMenuLink->$link_title_var2;
                        }
                        ?>
                        <?php if($FooterMenuLink->type==3 || $FooterMenuLink->type==2): ?>
                        
                        <li>
                            <a href="<?php echo e(Helper::sectionURL($FooterMenuLink->cat_id)); ?>"><?php echo e($link_title); ?></a>
                        </li>
                        <?php elseif($FooterMenuLink->type==1): ?>
                        
                        <?php
                        if (@Helper::currentLanguage()->code != env('DEFAULT_LANGUAGE')) {
                            $f3c = mb_substr($FooterMenuLink->link, 0, 3);
                            if ($f3c == "htt" || $f3c == "www") {
                                $this_link_url = $FooterMenuLink->link;
                            } else {
                                $this_link_url = url(@Helper::currentLanguage()->code . "/" . $FooterMenuLink->link);
                            }
                        } else {
                            $this_link_url = url($FooterMenuLink->link);
                        }
                        ?>
                        <li>
                            <a href="<?php echo e($this_link_url); ?>"><?php echo e($link_title); ?></a>

                        </li>

                        <?php else: ?>

                        <?php
                        $footer = Menu::all()->where('father_id', 179);
                        $focus = Menu::all()->where('father_id', 180);
                        $media = Menu::all()->where('father_id', 186);
                        $connect = Menu::all()->where('father_id', 190);
                        $lions_history = Menu::all()->where('father_id', 465);
                        ?>
                        

                        <div class="col-lg-3 col-md-3 col-sm-3">
                            <h4><a><?php echo e($link_title); ?></a></h4>
                            <?php if($link_title == "Focus"): ?>
                            <?php $__currentLoopData = $focus; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $menu): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
                        
                            <li><a href="<?php echo e($menu['link']); ?>" target="_blank"> <?php echo e($menu['title_en']); ?></a></li>
                            <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
                            <?php elseif($link_title == "Media"): ?>
                            <?php $__currentLoopData = $media; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $menu): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
                            <li><a href=<?php echo e($menu['link']); ?> target="_blank"> <?php echo e($menu['title_en']); ?></a></li>
                            <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
                            <?php elseif($link_title == "Connect"): ?>
                            <?php $__currentLoopData = $connect; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $menu): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
                            <li><a class ="jjjj" href="<?php echo e($menu['link']); ?>" target="_blank"> <?php echo e($menu['title_en']); ?></a></li>
                            <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
                            <?php elseif($link_title == "Lions History"): ?>
                            <?php $__currentLoopData = $lions_history; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $menu): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
                            <li><a class ="jjjj" href="<?php echo e($menu['link']); ?>" target="_blank"> <?php echo e($menu['title_en']); ?></a></li>
                            <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
                            <?php endif; ?>
                        </div>

                        <?php endif; ?>
                        <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
                    </ul>
                </div>
            </div>
            <?php endif; ?>
            <div class="col-lg-3 col-md-3 col-sm-3 col-3">
                <!-- <div class="col-lg-<?php echo e($bx1w); ?>"> -->

                <div class="widget footer3 contacts">
                    <h4 class="widgetheading"><i class="fa fa-phone-square"></i>&nbsp; <?php echo e(__('frontend.contactDetails')); ?></h4>
                    <?php if(Helper::GeneralSiteSettings("contact_t1_" . @Helper::currentLanguage()->code) !=""): ?>
                    <address>
                        <strong><?php echo e(__('frontend.address')); ?>:</strong><br>
                        <i class="fa fa-map-marker"></i>
                        &nbsp;<?php echo e(Helper::GeneralSiteSettings("contact_t1_" . @Helper::currentLanguage()->code)); ?>

                    </address>
                    <?php endif; ?>
                    <?php if(Helper::GeneralSiteSettings("contact_t3") !=""): ?>
                  
                    <?php endif; ?>
                    <?php if(Helper::GeneralSiteSettings("contact_t6") !=""): ?>
                    <p>
                        <strong><?php echo e(__('frontend.email')); ?>:</strong><br>
                        <i class="fa fa-envelope"></i> &nbsp;<a href="mailto:<?php echo e(Helper::GeneralSiteSettings("contact_t6")); ?>"><?php echo e(Helper::GeneralSiteSettings("contact_t6")); ?></a>
                    </p>
                    <?php endif; ?>
                </div>
                <div class="row m-0">
                    <!-- <div class="col-lg-6"> -->
                    <div class="col-lg-6 col-md-6 col-sm-6">
                        <ul class="social-network">
                            <?php if($WebsiteSettings->social_link2): ?>
                            <li><a href="<?php echo e($WebsiteSettings->social_link2); ?>" data-placement="top" title="Twitter" target="_blank"><i class="fa fa-twitter"></i></a></li>
                            <?php endif; ?>
                            <?php if($WebsiteSettings->social_link1): ?>
                            <li><a href="<?php echo e($WebsiteSettings->social_link1); ?>" data-placement="top" title="Facebook" target="_blank"><i class="fa fa-facebook"></i></a></li>
                            <?php endif; ?>
                            <?php if($WebsiteSettings->social_link6): ?>
                            <li><a href="<?php echo e($WebsiteSettings->social_link6); ?>" data-placement="top" title="Instagram" target="_blank"><i class="fa fa-instagram"></i></a></li>
                            <?php endif; ?>
                        </ul>
                    </div>
                </div>
            </div>
            <?php endif; ?>
            <!-- <?php echo $__env->make('frontEnd.includes.subscribe', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> -->
        </div>
    </div>
    <?php endif; ?>
    <!-- <div style ="font-family:'poppins'" class="container"> -->
        <!-- <div class="row">
            <div style="margin-left: 20px;"></div>
            <div class="col-lg-12 col-md-12 col-sm-12 col-12 ">
                <div class="widget footer1 ">
                    <h4 class="widgetheading"><i class="fa fa-rss"></i>&nbsp; Social Media Latest News
                    </h4>
                    <div class="row">

                        <div class="fb-div col-md-4 col-sm-12 col-xs-12">
                        <h4><a>Facebook</a></h4>

                        <div id="fb-root"></div>
<script async defer crossorigin="anonymous" src="https://connect.facebook.net/en_GB/sdk.js#xfbml=1&version=v15.0" nonce="8tdFvX8A"></script>

<div class="fb-page" data-href="https://www.facebook.com/lionsclubs/" data-tabs="timeline" data-width="300" data-height="400" data-small-header="false" data-adapt-container-width="true" data-hide-cover="false" data-show-facepile="true"><blockquote cite="https://www.facebook.com/lionsclubs/" class="fb-xfbml-parse-ignore"><a href="https://www.facebook.com/lionsclubs/">Lions Clubs International</a></blockquote></div> -->
                            <!-- <iframe src="https://www.facebook.com/plugins/post.php?href=https%3A%2F%2Fwww.facebook.com%2Fphoto%2F%3Ffbid%3D364122319085085%26set%3Da.364122302418420&show_text=true&width=500" width="357" height="480" style="border:none;overflow:hidden; border-radius:10px;" scrolling="Yes" frameborder="0" allowfullscreen="true" allow="autoplay; clipboard-write; encrypted-media; picture-in-picture; web-share"></iframe> -->
                            <!-- <iframe src="https://www.facebook.com/plugins/post.php?href=https%3A%2F%2Fwww.facebook.com%2FLionsClubsIndia%2Fphotos%2Fa.1457801871131287%2F1964925417085594%2F&show_text=true&width=357" width="357" height="480" style="border:none; border-radius:10px;overflow:hidden" scrolling="yes" frameborder="2" allowfullscreen="true" allow="autoplay; clipboard-write; encrypted-media; picture-in-picture; web-share"></iframe> -->
                            <!-- <blockquote class="twitter-tweet">
                                <p lang="en" dir="ltr"><a href="https://twitter.com/hashtag/WeServe?src=hash&amp;ref_src=twsrc%5Etfw">#WeServe</a> in over 200 countries and geographic areas. We are 1.4 million members in 48,000 clubs. We lead by example, build relationships and improve the world through kindness. Join us! <a href="https://t.co/faTuCthOLU">https://t.co/faTuCthOLU</a> <a href="https://t.co/5W47cTKQC2">pic.twitter.com/5W47cTKQC2</a></p>&mdash; Lions Clubs (@lionsclubs) <a href="https://twitter.com/lionsclubs/status/1562846528683020289?ref_src=twsrc%5Etfw">August 25, 2022</a>
                            </blockquote>
                            <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>-->
                        <!-- </div> 
                        <div class="insta-div col-md-4 col-sm-12 col-xs-12">
                            <h4><a>Instagram</a></h4>
                            <iframe src="https://www.instagram.com/lionsclubs/?hl=en_text=true&width=357" width="357" height="480" style="border:none; border-radius:10px;overflow:hidden" scrolling="yes" frameborder="0" allowfullscreen="true" allow="autoplay; clipboard-write; encrypted-media; picture-in-picture; web-share"></iframe> -->

                            <!-- <blockquote class="twitter-tweet">
                                <p lang="en" dir="ltr"><a href="https://twitter.com/hashtag/WeServe?src=hash&amp;ref_src=twsrc%5Etfw">#WeServe</a> in over 200 countries and geographic areas. We are 1.4 million members in 48,000 clubs. We lead by example, build relationships and improve the world through kindness. Join us! <a href="https://t.co/faTuCthOLU">https://t.co/faTuCthOLU</a> <a href="https://t.co/5W47cTKQC2">pic.twitter.com/5W47cTKQC2</a></p>&mdash; Lions Clubs (@lionsclubs) <a href="https://twitter.com/lionsclubs/status/1562846528683020289?ref_src=twsrc%5Etfw">August 25, 2022</a>
                            </blockquote>
                            <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>-->
                        <!-- </div>
                        <div class="twitter-div col-md-4 col-sm-12 col-xs-12">
                            <h4><a>Twitter</a></h4>
                            <div align="left"><a class="twitter-timeline" data-height="400" data-width="300" data-dnt="true"  href="https://twitter.com/lionsclubs?ref_src=twsrc%5Etfw">Tweets by lionsclubs</a>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</div> -->
                            

                            <!-- <blockquote class="twitter-tweet">
                                <p lang="en" dir="ltr"><a href="https://twitter.com/hashtag/WeServe?src=hash&amp;ref_src=twsrc%5Etfw">#WeServe</a> in over 200 countries and geographic areas. We are 1.4 million members in 48,000 clubs. We lead by example, build relationships and improve the world through kindness. Join us! <a href="https://t.co/faTuCthOLU">https://t.co/faTuCthOLU</a> <a href="https://t.co/5W47cTKQC2">pic.twitter.com/5W47cTKQC2</a></p>&mdash; Lions Clubs (@lionsclubs) <a href="https://twitter.com/lionsclubs/status/1562846528683020289?ref_src=twsrc%5Etfw">August 25, 2022</a>
                            </blockquote>
                            <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script> -->

                            




                        <!-- </div>

                    </div>
                </div>
            </div>
        </div> -->
        <!-- <a class="font-button plus">A+</a> <a class="font-button minus">A-</a> -->
    <!-- </div> -->

</footer>
<style>
    .footer-copyright{
        /* background-color: #1c4f9c; */
        background-color: #10356c;
        font-family: 'poppins';
        color:#fff;
        /* border-top: 1px solid white; */
    }
   .text-center p{
        padding: 10px;
        margin: 0;
        font-size: 13px;
    }
</style>
<div class="footer-copyright" >
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<p>Copyright © <?php $year = date("Y"); echo $year; ?>  Powered by Twilight IT Solutions Private Limited.</p>
</div>
</div>
</div>
</div>
<?php /**PATH /var/www/lionsclub/core/resources/views/frontEnd/includes/footer.blade.php ENDPATH**/ ?>