@if ($collection instanceof \App\Models\Challenge) {{$collection->challengeComments ->where('user_id', $user->id) ->where('division_type', request()->division_type) ->where('division_id', $userScore->division_id) ->count()}} @elseif($collection instanceof \App\Models\Event) {{ $collection->eventComments ->where('user_id', $user->id) ->where('division_type', request()->division_type) ->where('division_id', $userScore->division_id) ->count()}} @else 0 @endif
Comments