{{-- resources/views/general/posts/partials/post-card.blade.php --}} @php $u = $post->user; $avatar = $u->avatar_url ?? asset('images/default-male-avatar.png'); $name = $u->name ?? $u->username ?? 'عضو'; @endphp
{{-- Header --}}
{{ $name }}
{{ $name }}
@if(!empty($post->is_pinned)) مثبت @endif
{{ $post->formatted_time }}
{{-- Actions --}}
@if(!empty($post->can_delete)) @endif
{{-- Body --}} @if(!empty($post->content))

{{ $post->content }}

@endif {{-- Attachments --}} @if(!empty($post->attachment_urls) && count($post->attachment_urls)) @php $urls = $post->attachment_urls; $count = count($urls); @endphp
@foreach($urls as $idx => $url) attachment @endforeach
@endif {{-- Reaction summary + comment count --}}
👍 {{ (int)($post->reaction_counts['like'] ?? 0) + (int)($post->reaction_counts['love'] ?? 0) }}
{{-- Action bar (Facebook style) --}}
{{-- Like with FB reaction bar --}}
{{-- FB reaction palette (hover/press) --}}
{{-- Comment --}} {{-- Share placeholder --}}
{{-- Comments panel --}}