small quality fixes

This commit is contained in:
Conkley 2022-07-15 12:39:58 +10:00
parent 2049a60734
commit fb13a3bf4a
2 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@
<a href="{{ route('profile', $post->user->id) }}"
id="FeedContainerBox1Username">{{ $post->user->name }}</a>
<p id="FeedContainerBox1Text">"{{ $post->status }}"</p>
<p id="FeedContainerBox1Timestamp">{{ $post->created_at->format('F d, Y H:i A') }}</p>
<p id="FeedContainerBox1Timestamp">{{ $post->created_at->format('F d, Y h:i A') }}</p>
</div>
</div>
@endforeach

View File

@ -4,7 +4,7 @@
@endsection
@section('content')
<h1 id="usernameframe">Friends ({{ count($userFriends) }})</h1>
<h1 id="usernameframe">Friends ({{ Auth::user()->getFriendsCount() }})</h1>
<a href="#" class="tab_selected">All Friends</a>
<a href="{{ route('requests') }}" class="tab">Pending Requests ({{ count(Auth::user()->getFriendRequests()) }})</a>
<br>