small quality fixes
This commit is contained in:
parent
2049a60734
commit
fb13a3bf4a
|
|
@ -44,7 +44,7 @@
|
||||||
<a href="{{ route('profile', $post->user->id) }}"
|
<a href="{{ route('profile', $post->user->id) }}"
|
||||||
id="FeedContainerBox1Username">{{ $post->user->name }}</a>
|
id="FeedContainerBox1Username">{{ $post->user->name }}</a>
|
||||||
<p id="FeedContainerBox1Text">"{{ $post->status }}"</p>
|
<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>
|
||||||
</div>
|
</div>
|
||||||
@endforeach
|
@endforeach
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
@endsection
|
@endsection
|
||||||
|
|
||||||
@section('content')
|
@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="#" class="tab_selected">All Friends</a>
|
||||||
<a href="{{ route('requests') }}" class="tab">Pending Requests ({{ count(Auth::user()->getFriendRequests()) }})</a>
|
<a href="{{ route('requests') }}" class="tab">Pending Requests ({{ count(Auth::user()->getFriendRequests()) }})</a>
|
||||||
<br>
|
<br>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue