JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "f0f9e627b5eef50008f3659a97dcc89c.php"
Full Path: /home/u743136113/domains/arvi.seezify.com/public_html/storage/framework/views/f0f9e627b5eef50008f3659a97dcc89c.php
File size: 18.66 KB
MIME-type: text/x-php
Charset: utf-8
<?php $__env->startPush('title', get_phrase('Home')); ?>
<?php $__env->startPush('meta'); ?><?php $__env->stopPush(); ?>
<?php $__env->startPush('css'); ?>
<link rel="stylesheet" href="<?php echo e(asset('assets/frontend/default/fonts/lexend-deca/stylesheet.css')); ?>">
<link rel="stylesheet" href="<?php echo e(asset('assets/frontend/default/fonts/outfit/stylesheet.css')); ?>">
<link rel="stylesheet" href="<?php echo e(asset('assets/frontend/default/fonts/mulish/stylesheet.css')); ?>">
<link rel="stylesheet" href="<?php echo e(asset('assets/frontend/default/fonts/Poppins/stylesheet.css')); ?>">
<link rel="stylesheet" href="<?php echo e(asset('assets/frontend/default/fonts/dm-sens/stylesheet.css')); ?>">
<link rel="stylesheet" href="<?php echo e(asset('assets/frontend/default/fonts/rubik/stylesheet.css')); ?>">
<link rel="stylesheet" href="<?php echo e(asset('assets/frontend/default/fonts/montserrat/stylesheet.css')); ?>">
<link rel="stylesheet" href="<?php echo e(asset('assets/frontend/default/fonts/ubuntu/stylesheet.css')); ?>">
<link rel="stylesheet" href="<?php echo e(asset('assets/frontend/default/fonts/lato/stylesheet.css')); ?>">
<link rel="stylesheet" href="<?php echo e(asset('assets/frontend/default/fonts/manrope/stylesheet.css')); ?>">
<link rel="stylesheet" href="<?php echo e(asset('assets/frontend/default/fonts/mica-valo/stylesheet.css')); ?>">
<?php $__env->stopPush(); ?>
<?php $__env->startSection('content'); ?>
<!-- Banner Area Start -->
<section>
<div class="container">
<div class="row">
<div class="col-md-12">
<?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 = json_decode(get_frontend_settings('banner_image'))->$banneractive;
}
?>
<div class="maditation-banner-typography">
<img src="<?php echo e(asset('assets/frontend/default/image/meditation-typophy.svg')); ?>" alt="">
</div>
<div class="maditation-banner-content mb-80 d-flex">
<div class="maditation-banner-left">
<p class="info"><?php echo e(get_frontend_settings('banner_sub_title')); ?></p>
<a href="<?php echo e(route('courses')); ?>" class="explore-btn1">
<span class="text"><?php echo e(get_phrase('Explore Courses')); ?></span>
<span class="icon">
<img src="<?php echo e(asset('assets/frontend/default/image/arrow-send-white.svg')); ?>" alt="">
</span>
</a>
</div>
<div class="maditation-banner-image">
<?php if(isset($banner)): ?>
<img src="<?php echo e(asset($banner)); ?>" alt="">
<?php else: ?>
<img src="<?php echo e(asset('assets/frontend/default/image/maditation-banner.svg')); ?>" alt="">
<?php endif; ?>
</div>
<div class="maditation-banner-right">
<ul class="maditation-video-profiles d-flex align-items-center">
<?php
$students = DB::table('users')->where('role', 'student')->take(4)->get();
$total_student = DB::table('users')->where('role', 'student')->get();
$free_courses = DB::table('courses')->where('is_paid', 0)->get();
?>
<?php $__currentLoopData = $students; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $student): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<li>
<img src="<?php echo e(get_image($student->photo)); ?>" alt="">
</li>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</ul>
<div class="maditation-class-participant mb-20 d-flex flex-wrap">
<div class="class-participant">
<h2 class="total"><?php echo e(count($total_student)); ?>+</h2>
<p class="info"><?php echo e(get_phrase('Participant')); ?></p>
</div>
<div class="class-participant">
<h2 class="total"><?php echo e(count($free_courses)); ?>+</h2>
<p class="info"><?php echo e(get_phrase('Online Free Courses')); ?></p>
</div>
</div>
<div class="maditation-beginner-lesson">
<h2 class="total"><?php echo e(get_phrase('10%')); ?></h2>
<p class="info"><?php echo e(get_phrase('Lessons for beginner')); ?></p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Banner Area End -->
<!-- Harmony Area Start -->
<section class="harmony-main-section mb-80">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="harmony-title-area d-flex align-items-start justify-content-between flex-wrap">
<h1 class="title"><?php echo e(get_phrase('Featured Courses')); ?></h1>
<a href="<?php echo e(route('admin.courses')); ?>" class="explore-btn2">
<span class="text"><?php echo e(get_phrase('Explore Courses')); ?></span>
<span class="icon">
<img src="<?php echo e(asset('assets/frontend/default/image/arrow-send-white.svg')); ?>" alt="">
</span>
</a>
</div>
</div>
</div>
<div class="row row-30">
<?php
$feature_courses = DB::table('courses')->where('status', 'active')->latest('id')->get();
?>
<?php $__currentLoopData = $feature_courses->take(8); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $row): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<a href="<?php echo e(route('course.details', $row->slug)); ?>" class="col-xl-3 col-lg-4 col-md-6 col-sm-6">
<div class="single-harmony-yoga">
<div class="banner">
<img src="<?php echo e(get_image($row->thumbnail)); ?>" alt="">
</div>
<div class="overlay">
<p class="name"><?php echo e(ucfirst($row->title)); ?></p>
</div>
</div>
</a>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</div>
</div>
</section>
<!-- Harmony Area End -->
<!-- Pose's Journey Area Start -->
<section class="mb-80">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="posesjourney-title-area d-flex align-items-start justify-content-between flex-wrap">
<h1 class="title"><?php echo e(get_phrase('Top Course')); ?></h1>
<a href="<?php echo e(route('courses')); ?>" class="explore-btn1">
<span class="text"><?php echo e(get_phrase('See All Courses')); ?></span>
<span class="icon">
<img src="<?php echo e(asset('assets/frontend/default/image/arrow-send-white.svg')); ?>" alt="">
</span>
</a>
</div>
</div>
</div>
<div class="row row-30">
<?php
$top_courses = DB::table('courses')
->join('reviews', 'courses.id', '=', 'reviews.course_id')
->select('courses.*', DB::raw('COUNT(reviews.id) as review_count'), DB::raw('AVG(reviews.rating) as average_rating'))
->groupBy('courses.id')
->orderByDesc('review_count')
->take(6)
->get();
?>
<?php $__currentLoopData = $top_courses; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $row): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<div class="col-lg-4 col-md-6 col-sm-6">
<a href="<?php echo e(route('course.details', $row->slug)); ?>" class="pose-journey-link">
<div class="single-posesjourney-yoga">
<div class="banner">
<img src="<?php echo e(get_image($row->thumbnail)); ?>" alt="">
</div>
<?php if(isset($row->discount_flag) && $row->discount_flag == 1): ?>
<p class="price"><?php echo e(currency(number_format($row->price - $row->discounted_price, 2))); ?>
</p>
<?php elseif(isset($row->is_paid) && $row->is_paid == 0): ?>
<p class="price"><?php echo e(get_phrase('Free')); ?></p>
<?php else: ?>
<p class="price"><?php echo e(currency(number_format($row->price, 2))); ?></p>
<?php endif; ?>
<?php
$backgroundImage = asset('assets/frontend/default/image/pose-journey-shadow' . (($key % 3) + 1) . '.svg');
?>
<div class="overlay" style="--bgShape: url('<?php echo e($backgroundImage); ?>')">
<div class="posejourney-overley d-flex justify-content-between align-items-center">
<div class="title-area">
<h5 class="title"><?php echo e(ucfirst($row->title)); ?></h5>
<p class="info"><?php echo e($row->level); ?></p>
</div>
<div class="icon">
<img src="<?php echo e(asset('assets/frontend/default/image/arrow-right-fill-24.svg')); ?>" alt="">
</div>
</div>
</div>
</div>
</a>
</div>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</div>
</div>
</section>
<!-- Pose's Journey Area End -->
<!-- Yoga Benefit Area Start -->
<?php
$bigImage = json_decode(get_homepage_settings('meditation'));
$settings = get_homepage_settings('meditation');
if (!$settings) {
$settings = '{"meditation":[{"banner_title":"","banner_description":"", "image":""}]}';
}
$meditation_text = json_decode($settings);
$meditations = [];
$maxkey = 0;
if ($meditation_text && isset($meditation_text->meditation)) {
$meditations = $meditation_text->meditation;
$maxkey = count($meditations) > 0 ? max(array_keys((array) $meditations)) : 0;
}
?>
<section>
<div class="container">
<div class="row mb-80">
<div class="col-md-12">
<div class="yoga-benefit-area">
<h2 class="title"><?php echo e(get_phrase('The benefit of Yoga Expedition')); ?></h2>
<div class="yoga-benefits-wrap d-flex align-items-center">
<ul class="yoga-benefit-left yoga-benefit-list">
<?php $__currentLoopData = $meditations; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $slider): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<?php if($key % 2 == 0): ?>
<li>
<div class="yoga-benefit-details">
<h6 class="title"><?php echo e($slider->banner_title); ?></h6>
<p class="info"><?php echo e($slider->banner_description); ?></p>
</div>
<div class="yoga-benefit-image">
<img src="<?php echo e(asset('uploads/home_page_image/meditation/' . $slider->image ?? '')); ?>" alt="">
</div>
</li>
<?php endif; ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</ul>
<div class="yoga-benefit-banner">
<?php if(isset($bigImage->big_image)): ?>
<img src="<?php echo e(asset('uploads/home_page_image/meditation/' . $bigImage->big_image)); ?>" alt="">
<?php endif; ?>
</div>
<ul class="yoga-benefit-right yoga-benefit-list">
<?php $__currentLoopData = $meditations; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $slider): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<?php if($key % 2 != 0): ?>
<li>
<div class="yoga-benefit-image">
<img src="<?php echo e(asset('uploads/home_page_image/meditation/' . $slider->image ?? '')); ?>" alt="">
</div>
<div class="yoga-benefit-details">
<h6 class="title"><?php echo e($slider->banner_title); ?></h6>
<p class="info"><?php echo e($slider->banner_description); ?></p>
</div>
</li>
<?php endif; ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Yoga Benefit Area End -->
<!-- Blog Area Start -->
<?php if(get_frontend_settings('blog_visibility_on_the_home_page')): ?>
<section>
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="meditation-blog-title-area d-flex align-items-center justify-content-between flex-wrap">
<h2 class="title"><?php echo e(get_phrase('Blogs')); ?></h2>
<a href="<?php echo e(route('blogs')); ?>" class="explore-btn1">
<span class="text"><?php echo e(get_phrase('See All Blogs')); ?></span>
<span class="icon">
<img src="<?php echo e(asset('assets/frontend/default/image/arrow-send-white.svg')); ?>" alt="">
</span>
</a>
</div>
</div>
</div>
<div class="row row-30 mb-80">
<?php $__currentLoopData = $blogs; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $blog): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<div class="col-lg-4 col-md-6 col-sm-6">
<a href="<?php echo e(route('blog.details', $blog->slug)); ?>" class="meditation-blog-link">
<div class="meditation-blog-inner">
<div class="banner">
<img src="<?php echo e(get_image($blog->thumbnail)); ?>" alt="">
</div>
<div class="meditation-blog-details">
<h3 class="title"><?php echo e(ucfirst($blog->title)); ?></h3>
<p class="info ellipsis-line-3"><?php echo e(ellipsis(strip_tags($blog->description), 160)); ?></p>
<p class="read-more d-flex align-items-center">
<span><?php echo e(get_phrase('Read More')); ?></span>
<img src="<?php echo e(asset('assets/frontend/default/image/arrow-right-black-20.svg')); ?>" alt="">
</p>
</div>
</div>
</a>
</div>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</div>
</div>
</section>
<?php endif; ?>
<!-- Blog Area End -->
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.default', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/u743136113/domains/academy.seezify.com/public_html/resources/views/components/home_permanent_templates/meditation.blade.php ENDPATH**/ ?>