{{-- Header --}} {{ $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) @endforeach @endif {{-- Reaction summary + comment count --}} 👍 ❤ {{ (int)($post->reaction_counts['like'] ?? 0) + (int)($post->reaction_counts['love'] ?? 0) }} {{ (int)$post->comments_count }} تعليق {{-- Action bar (Facebook style) --}} {{-- Like with FB reaction bar --}} 👍 {{ $post->user_reaction ? 'تفاعلت' : 'أعجبني' }} {{ (int)($post->reaction_counts['like'] ?? 0) }} {{-- FB reaction palette (hover/press) --}} @php $rx = [ ['k'=>'like','e'=>'👍','t'=>'إعجاب'], ['k'=>'love','e'=>'❤️','t'=>'حب'], ['k'=>'laugh','e'=>'😂','t'=>'ضحك'], ['k'=>'wow','e'=>'😮','t'=>'واو'], ['k'=>'sad','e'=>'😢','t'=>'حزن'], ['k'=>'angry','e'=>'😡','t'=>'غضب'], ]; @endphp @foreach($rx as $r) {{ $r['e'] }} @endforeach {{-- Comment --}} تعليق {{-- Share placeholder --}} مشاركة {{-- Comments panel --}} {{-- Write comment --}} Ctrl+Enter للإرسال إرسال {{-- Comments list --}} @foreach($post->comments as $comment) @include('general.posts.partials.comment-card', ['comment'=>$comment]) @endforeach