Server : Apache System : Linux 145.162.205.92.host.secureserver.net 5.14.0-611.45.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Apr 1 05:56:53 EDT 2026 x86_64 User : tradze ( 1001) PHP Version : 8.1.34 Disable Function : NONE Directory : /home/tradze/www/storage/framework/views/ |
<?php $__env->startSection('content'); ?>
<div class="text-zone">
<div class="row">
<?php /*start left content*/ ?>
<div class="col-xs-12 col-sm-9 col-md-9 col-lg-9">
<?php $__empty_1 = true; foreach($posts as $post): $__empty_1 = false; ?>
<div class="treatment">
<div class="treatment-info">
<div class="treatment-title"><?php echo e($post->title); ?></div>
<div class="note">
<?php echo e($post->created_at->format('M d, Y')); ?> in <?php echo e($post->category->title); ?> by <?php echo e($post->user->name); ?>
</div>
<div class="treatment-text"><?php echo $post->excerpt; ?></div>
<?php if(isset($post->image_feature)): ?>
<div class="treatment-image"> <img src="<?php echo e(asset('/images/'. $post->image_feature)); ?>" /></div>
<?php endif; ?>
<a href="<?php echo e($post->url); ?>" class="btn-book-treatment">READ MORE</a>
</div>
</div>
<?php endforeach; if ($__empty_1): ?>
<div class="treatment">
<div class="treatment-title">No posts yet, please come back later.</div>
</div>
<?php endif; ?>
</div>
<?php /*end left content*/ ?>
<div class="col-xs-12 col-sm-3 col-md-3 col-lg-3">
<div class="treatment-info">
<div class="treatment-title">Categories</div>
<?php foreach($categories as $key=>$cat): ?>
<div class="treatment-text">
<a class="blog-link" href="<?php if($cat->posts->count()): ?> <?php echo e($cat->url); ?> <?php else: ?> # <?php endif; ?>"><?php echo e($cat->title); ?>
(<?php echo e($cat->posts->count()); ?>)
</a>
</div>
<?php endforeach; ?>
</div>
</div>
</div>
</div>
<div> </div>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('blog::frontend_new.layouts.master', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>