@extends('layouts.blog')
@section('title', $author->name)
@section('content')
{{ $author->name }}
@if($author->bio)
{{ $author->bio }}
@endif
@if($author->twitter_handle)
Twitter
@endif
@if($author->github_handle)
GitHub
@endif
@forelse ($posts as $post)
@if($post->banner_url)
@endif
@empty
No posts found for this author.
@endforelse
{{ $posts->links() }}
@endsection