@extends('layouts.blog') @section('title', $author->name) @section('content')
{{ $author->name }}

{{ $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) {{ $post->title }} @endif
{{ $post->category->name }}

{{ $post->title }}

{{ $post->excerpt }}

@empty

No posts found for this author.

@endforelse
{{ $posts->links() }} @endsection