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

File "4d0cf52fb6f314139a302127e7042df8.php"

Full Path: /home/ambitio2/public_html/storage/framework/views/4d0cf52fb6f314139a302127e7042df8.php
File size: 1.84 KB
MIME-type: text/html
Charset: utf-8





<!-- Banner Area Start -->
<?php
$bannerData = json_decode(get_frontend_settings('banner_image'));
$banneractive = get_frontend_settings('home_page');
if ($bannerData !== null && is_object($bannerData) && property_exists($bannerData, $banneractive)) {
    $banner = asset(json_decode(get_frontend_settings('banner_image'))->$banneractive);
} else {
    $defaultBanner = asset('assets/frontend/default/image/hero_banner.jpg');
}
$total_students = DB::table('users')->where('role', 'student')->get();
?>
<section>
<div class="container">
    <div class="row mb-50px">
        <div class="col-md-12">
            <div class="lms-banner-area-3" style="height: 100vh; background-image: url(<?php echo e(isset($banner) ? $banner : $defaultBanner); ?>); background-size: cover;">
    
            </div>
        </div>
    </div>
</div>
</section>
<!-- Banner Area End -->





<script>


    function scrollToSmoothly(pos, time) {
        if (isNaN(pos)) {
            throw "Position must be a number";
        }
        if (pos < 0) {
            throw "Position can not be negative";
        }
        var currentPos = window.scrollY || window.screenTop;
        if (currentPos < pos) {
            var t = 10;
            for (let i = currentPos; i <= pos; i += 10) {
                t += 10;
                setTimeout(function() {
                    window.scrollTo(0, i);
                }, t / 2);
            }
        } else {
            time = time || 2;
            var i = currentPos;
            var x;
            x = setInterval(function() {
                window.scrollTo(0, i);
                i -= 10;
                if (i <= pos) {
                    clearInterval(x);
                }
            }, time);
        }
    }
</script><?php /**PATH /home/ambitio2/public_html/resources/views/components/home_made_by_developer/hero_static_image.blade.php ENDPATH**/ ?>