@extends('layouts.app') @section('title') Profile of: {{ $user->username }} @endsection @section('content')
profile picture

{{ $user->username }}

0 Followers

0 Following

0 Posts

Posts

@if ($posts->count())
@foreach ($posts as $post)
{{ $post->title }}
@endforeach
{{ $posts->links() }}
@else

No posts yet

@endif
@endsection