@extends('layouts.app')
@section('title', 'Author: ' . $author->name)
@section('content')
{{ strtoupper(substr($author->name, 0, 1)) }}
{{ $author->name }}
@if($author->bio)
{{ $author->bio }}
@endif
@foreach($posts as $post)
@include('partials.post-card', ['post' => $post])
@endforeach
{{ $posts->links() }}
@endsection