@extends('layouts.front') @section('title', 'الكتّاب') @section('content')
{{-- ⭐ العنوان --}}

قائمة الكتّاب

جميع الكتّاب النشطين مع عدد المقالات والمشاهدات

{{-- شبكة الكتّاب --}}
@foreach($authors as $author)
{{-- الصورة --}}
{{ $author->name }}
{{-- الاسم --}}

{{ $author->name }}

{{-- الوظيفة --}} @if($author->job_title)

{{ $author->job_title }}

@endif {{-- عدد المقالات + المشاهدات --}}
{{ $author->posts_count }}
{{ $author->total_views }}
{{-- روابط التواصل --}}
@if($author->facebook) @endif @if($author->twitter) @endif @if($author->instagram) @endif @if($author->website) @endif
{{-- زر عرض الملف --}}
@endforeach
{{-- Pagination --}}
{{ $authors->links() }}
@endsection