@if($activity->subject)
{{ $activity->subject }}
@endif
@if($activity->description)
{{ $activity->description }}
@endif
{{-- Attachments --}}
@if($activity->attachments && is_array($activity->attachments))
Dosyalar:
@foreach($activity->attachments as $file)
@php
$ext = pathinfo($file['name'], PATHINFO_EXTENSION);
$isExcel = in_array(strtolower($ext), ['xls', 'xlsx', 'csv']);
$fileIcon = $isExcel ? 'fa-file-excel text-success' : 'fa-file-alt text-primary';
@endphp
{{ $file['name'] }}
({{ number_format(($file['size'] ?? 0) / 1024, 2) }} KB)
@endforeach
@endif
{{-- Pin status toggle action button under card (like the screenshot "SABİTLEMEYİ KALDIR") --}}
@if($activity->is_pinned)
@endif