@php use Carbon\Carbon; $totalAdsCount=0; $featuredAds = $user->featuredPosts()->count(); $nonFeaturedads = $user->nonFeaturedPosts()->count(); $subscriptionAdsCount = $user->subscription->ads_count; $totalAdsCount = $featuredAds + $nonFeaturedads; $rating = auth()->user()->rating; @endphp

{{ $user->name }}

@if ($rating >= 1) @else @endif @if ($rating >= 2) @else @endif @if ($rating >= 3) @else @endif @if ($rating >= 4) @else @endif @if ($rating >= 5) @else @endif

{{ $rating }}

Logout