@extends('layouts.host', ['header' => true, 'close_button' => true, 'header_image' => false]) @section('back_button') @endsection @section('content') Joined users sNo. User Name Email Rank Thumbs Up Thumbs Down Action @forelse ($divisionScores as $index => $score) {{ $index + 1 }} {{ $score?->user?->username ?? 'N/A' }} {{ $score?->user?->email ?? 'N/A' }} {{ $score?->rank ?? 'N/A' }} {{ count($score?->user?->eventRatings) > 0 ? $score?->user?->eventRatings ?->where('rating', 'like')->where('division_type', $score->division_type)->where('division_id', $score->division_id)->count() : 0 }} {{ count($score?->user?->eventRatings) > 0 ? $score?->user?->eventRatings ?->where('rating', 'dislike')->where('division_type', $score->division_type)->where('division_id', $score->division_id)->count() : 0 }} {{-- --}} Delete @empty No data found. @endforelse @endsection {{-- SCORE DELETION CONFIRMATION --}}
Are you sure you want to delete the Score You won't be able to reverse this!.