@extends('front.layouts.app') @section('content')
Author Image

{{ $author->name }}

{{ $author->designation }}

{{ $author->email }}

{{ $author->blogPosts->count() }} Articles

{{ $author->bio }}


Articles by {{ $author->name }}

Latest posts written by this author

@foreach ($author->blogPosts as $post)
{{ $post->title }}

{{ Str::limit($post->excerpt, 90) }}

Read More
@endforeach
@endsection