@extends('layouts.app')
@section('title')
Profile of: {{ $user->username }}
@endsection
@section('content')
{{ $user->username }}
@auth
@if ($user->id === auth()->user()->id)
@endif
@endauth
0
Followers
0
Following
0
Posts
Posts
@if ($posts->count())
@foreach ($posts as $post)
@endforeach
{{ $posts->links() }}
@else
No posts yet
@endif
@endsection