small quality fixes
This commit is contained in:
parent
2049a60734
commit
fb13a3bf4a
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue