Update profile views

Closes #84
pull/122/head^2
Daniel Supernault 7 years ago
parent 93129fe39f
commit ae6a59e782

@ -18,7 +18,7 @@
<div class="profile-stats pb-3 d-inline-flex lead"> <div class="profile-stats pb-3 d-inline-flex lead">
<div class="font-weight-light pr-5"> <div class="font-weight-light pr-5">
<a class="text-dark" href="{{$profile->url()}}"> <a class="text-dark" href="{{$profile->url()}}">
<span class="font-weight-bold">{{$profile->statuses()->count()}}</span> <span class="font-weight-bold">{{$profile->statuses()->whereNull('in_reply_to_id')->count()}}</span>
Posts Posts
</a> </a>
</div> </div>

@ -18,7 +18,7 @@
<div class="profile-stats pb-3 d-inline-flex lead"> <div class="profile-stats pb-3 d-inline-flex lead">
<div class="font-weight-light pr-5"> <div class="font-weight-light pr-5">
<a class="text-dark" href="{{$profile->url()}}"> <a class="text-dark" href="{{$profile->url()}}">
<span class="font-weight-bold">{{$profile->statuses()->count()}}</span> <span class="font-weight-bold">{{$profile->statuses()->whereNull('in_reply_to_id')->count()}}</span>
Posts Posts
</a> </a>
</div> </div>

@ -50,7 +50,7 @@
</div> </div>
<div class="profile-stats pb-3 d-inline-flex lead"> <div class="profile-stats pb-3 d-inline-flex lead">
<div class="font-weight-light pr-5"> <div class="font-weight-light pr-5">
<span class="font-weight-bold">{{$user->statuses()->count()}}</span> <span class="font-weight-bold">{{$user->statuses()->whereNull('in_reply_to_id')->count()}}</span>
Posts Posts
</div> </div>
<div class="font-weight-light pr-5"> <div class="font-weight-light pr-5">

Loading…
Cancel
Save