@extends('layouts.app') @section('content')
{{$user->username}} @if($owner == true) Settings @elseif ($following == true) @elseif ($following == false) @endif {{-- TODO: Implement action dropdown --}}
{{$user->statuses()->count()}} Posts
{{$user->followingCount(true)}} Following

{{$user->name}}

@if($timeline->count() > 0) @foreach($timeline as $status) @endforeach @else

{{ __('profile.emptyTimeline') }}

@endif
@endsection