diff --git a/resources/views/profile/followers.blade.php b/resources/views/profile/followers.blade.php index 8fd90f215..58e79a3b4 100644 --- a/resources/views/profile/followers.blade.php +++ b/resources/views/profile/followers.blade.php @@ -18,7 +18,7 @@
- {{$profile->statuses()->count()}} + {{$profile->statuses()->whereNull('in_reply_to_id')->count()}} Posts
diff --git a/resources/views/profile/following.blade.php b/resources/views/profile/following.blade.php index 56a372963..f04ca85e4 100644 --- a/resources/views/profile/following.blade.php +++ b/resources/views/profile/following.blade.php @@ -18,7 +18,7 @@
diff --git a/resources/views/profile/show.blade.php b/resources/views/profile/show.blade.php index 3e34a4c1a..bb6d57a65 100644 --- a/resources/views/profile/show.blade.php +++ b/resources/views/profile/show.blade.php @@ -50,7 +50,7 @@
- {{$user->statuses()->count()}} + {{$user->statuses()->whereNull('in_reply_to_id')->count()}} Posts