PATH:
home
/
rwabteecom
/
public_html
/
storage
/
framework
/
views
/
Editing: fbdaa2fc841ce0646621c98ca3856337.php
<div> <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 mb-16" <?php if(checkFrontLanguageSession() == 'ar'): ?> dir="rtl" <?php endif; ?>> <!--[if BLOCK]><![endif]--><?php $__currentLoopData = $blogs; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $blog): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <div class="bg-white rounded-xl shadow-md overflow-hidden transition-all duration-300 hover:shadow-lg hover:-translate-y-1"> <a href="<?php echo e(route('fornt-blog-show', $blog->slug)); ?>" class="block"> <div class="aspect-w-16 aspect-h-9 relative"> <a href="<?php echo e(route('fornt-blog-show', $blog->slug)); ?>"> <div class="blog-img"> <img src="<?php echo e(isset($blog->blog_image) ? $blog->blog_image : asset('front/images/about-1.png')); ?>" alt="Blog post" class="h-[230px] w-100 object-fit-cover" /> </div> </a> </div> </a> <div class="p-6"> <div class="flex items-center space-x-2 mb-3"> </div> <?php $description = $blog->description; $wordCount = str_word_count(strip_tags($description)); ?> <a href="<?php echo e(route('fornt-blog-show', $blog->slug)); ?>"> <h3 class="text-xl font-bold text-secondary-800 mb-3 hover:text-primary-600 transition-colors"> <?php echo e($blog->title); ?></h3> </a> <!--[if BLOCK]><![endif]--><?php if($wordCount > 35): ?> <p class="text-secondary-600 mb-4 line-clamp-3"> <?php echo str_replace(' ', ' ', \Illuminate\Support\Str::words(strip_tags($description), 35, '...')); ?> </p> <?php else: ?> <p class="text-secondary-600 mb-4 line-clamp-3"><?php echo str_replace(' ', ' ', $description); ?></p> <?php endif; ?><!--[if ENDBLOCK]><![endif]--> <div class="text-secondary-800 fs-18 date-time mt-2"> <span><i class="fas fa-calendar-alt icon-color-bs-purple"></i><span class="ms-2"><?php echo e($blog->created_at->format('F d, Y')); ?></span></span> <span class="text-primary ms-4 me-4">|</span> <span> <i class="fas fa-clock icon-color-bs-purple"></i> <span class="ms-2"><?php echo e($blog->created_at->diffForHumans()); ?> </span> </span> </div> </div> </div> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?><!--[if ENDBLOCK]><![endif]--> </div> <div class="d-flex justify-content-center mt-4"> <?php echo e($blogs->links()); ?> </div> </div> <?php /**PATH /home/rwabteecom/public_html/resources/views/livewire/blog-list3.blade.php ENDPATH**/ ?>
SAVE
CANCEL