{{__('user.Joined')}}: {{ Carbon\Carbon::parse($user->created_at)->format('F Y') }}
{{ html_decode($user->designation) }}
@php $review=App\Models\Review::where(['author_id' => $user->id, 'status' => 1])->get()->average('rating'); $votes=App\Models\Review::where(['author_id' => $user->id, 'status' => 1])->get()->count(); $total_product=App\Models\Product::with('category','author')->where(['author_id' => $user->id, 'status' => 1])->get()->count(); $total_sold=App\Models\OrderItem::with('product', 'variant', 'order')->where('author_id', $user->id)->get()->count(); @endphp