@extends('layouts.front') @section('title', $author->name) @section('content')
{{-- 👤 بطاقة الكاتب --}}
{{-- صورة الكاتب --}}
{{ $author->name }}
{{-- الاسم --}}

{{ $author->name }}

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

{{ $author->job_title }}

@endif {{-- السيرة --}} @if($author->bio)

{{ $author->bio }}

@endif {{-- 🌐 روابط التواصل --}}
@if($author->facebook) @endif @if($author->twitter) @endif @if($author->instagram) @endif @if($author->website) @endif
{{-- ✍️ مقالات الكاتب --}}

مقالات {{ $author->name }}

{{ $posts->total() }} مقال منشور
{{-- شبكة المقالات --}} @if($posts->count())
@foreach($posts as $post)
@if($post->cover) {{ $post->title }} @endif
{{ $post->title }}

{{ Str::limit(strip_tags($post->excerpt ?? $post->body), 110) }}

{{ $post->published_at->diffForHumans() }}
@endforeach
{{ $posts->links() }}
@else

لا توجد مقالات منشورة لهذا الكاتب حالياً.

@endif
@endsection