@extends('layouts.app') @section('title',$competition->title) @section('content')
Registered Projects{{ $competition->projects_count }}
Projects Assigned{{ $evaluationStats['assigned'] }}
Projects Fully Evaluated{{ $evaluationStats['completed'] }}
Competition Details
Venue
{{ $competition->venue?:'Not specified' }}
Registration Deadline
{{ $competition->registration_deadline?->format('d M Y, h:i A')?:'Not specified' }}
Submission Deadline
{{ $competition->submission_deadline?->format('d M Y, h:i A')?:'Not specified' }}
Categories
{{ collect($competition->categories)->join(', ')?:'Open' }}
Active Rubric
{{ $competition->activeRubric?->name?:'Not configured' }} @if($competition->activeRubric)({{ number_format($competition->activeRubric->criteria->sum('weightage'),2) }}%)@endif
Actions
@if(auth()->user()->isAdministrator()) + Add Project Manage Rubrics Assign Evaluation Panels @if(!$competition->isLocked())
@csrf
@endif @if(auth()->user()->hasRole('superadmin')&&$competition->status==='completed')
@csrf
@endif @else View My Projects @endif
@endsection