관리-도구
편집 파일: f1a53512e800560fafa818e6c8f50fda.php
<?php if (!$testimonial || !is_object($testimonial)) { return; } $profileImagePath = 'storage/lms/testimonials/' . $testimonial->profile_image; $defaultImage = 'lms/frontend/assets/images/placeholder/profile.jpg'; $imageSrc = $testimonial->profile_image && fileExists('lms/testimonials', $testimonial->profile_image) ? asset($profileImagePath) : asset($defaultImage); $translations = parse_translation($testimonial); ?> <div class="swiper-slide"> <div class="flex flex-col sm:flex-row sm:items-center gap-7 p-7 h-full bg-section rounded-2xl hover:border-transparent hover:shadow-lg custom-transition"> <div class="aspect-[1/1.22] max-w-56 rounded-xl overflow-hidden shrink-0"> <img data-src="<?php echo e($imageSrc); ?>" alt="Testimonial profile" class="size-full object-cover"> </div> <div class="grow"> <div class="flex items-center gap-0.5 text-warning"><?php echo show_rating($translations['rating'] ?? $testimonial->rating ?? 0); ?></div> <div class="area-description mt-5 line-clamp-4"><?php echo clean($translations['comments'] ?? $testimonial->comments ?? ''); ?></div> <div class="flex justify-between mt-10"> <div class="shrink-0 grow"> <h6 class="area-title text-lg text-secondary !leading-none"><?php echo e($translations['name'] ?? $testimonial->name ?? ''); ?></h6> <p class="area-description !leading-none mt-1.5"><?php echo e($translations['designation'] ?? $testimonial->designation ?? ''); ?></p> </div> <img data-src="<?php echo e(asset('lms/frontend/assets/images/icons/quote-green-outline.svg')); ?>" alt="Quote Icon" class="shrink-0 animate-bounce"> </div> </div> </div> </div> <?php /**PATH D:\www\edulab\Modules\LMS\resources\views\components\cards\testimonial\card-four.blade.php ENDPATH**/ ?>