@extends('layouts.app') @section('title', $user->name . '\'s Profile') @section('content')
{{ $user->email }}
@endif{{ $user->bio ?? 'This user has not added a bio yet.' }}
{{ $post->created_at->format('M d, Y') }}
{{ \Illuminate\Support\Str::limit(strip_tags($post->body), 180) }}
{{-- View Post Button --}} View PostNo posts yet.
@endforelse