<?php $__currentLoopData = $items; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $item): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <li class="sh__notify-list__item"> <a href="#" class="single-notify flex-ai-top single-noti-home" data-id="<?php echo e($item->id); ?>" <?php if(!$item->is_read): ?> style="background-color: #fff3e0" <?php endif; ?>> <div class="single-notify__image circle-image"><img src="<?php echo e($item->image); ?>" alt=""></div> <div class="single-notify__content"> <div class="single-notify__content__main"><?php echo e(strip_tags($item->content)); ?> </div> <div class="single-notify__content__meta"> <span><?php echo e($item->created_at->format('d/m/Y')); ?></span> </div> </div> </a> </li> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>