@extends('layouts.admin')
| S.no | Description | Student Name | Images | Links | Activity Date |
|---|---|---|---|---|---|
| {{ $loop->iteration }} | @php $desc = $firstActivity->description ?? 'N/A'; $shortDesc = strlen($desc) > 50 ? substr($desc, 0, 50) . '...' : $desc; @endphp | @if (!empty($imageArray)) @else No Images @endif | @php $linkLabel = match ($linkType) { 1 => 'YouTube Link', 2 => 'Video Link', 3 => 'Drive Link', 4 => 'PDF Link', default => 'View Link', }; $finalLink = in_array($linkType, [2, 4]) ? $cdnBaseUrl . ltrim($link, '/') : $link; @endphp {!! $link ? '' . $linkLabel . '' : 'No Link' !!} | {{ \Carbon\Carbon::parse($firstActivity->created_at)->format('d M Y') }} |