@extends('admin.layouts.masterlayout') @section('title', 'View Competition') @section('head_title', 'Event Management') @section('content')
{{ isset($event->title) ? $event->title : '-' }}
{{ isset($event->user->name) ? $event->user->name : '-' }}
{{ isset($event->assignTo->name) ? $event->assignTo->name : '-' }}
{{ $event->currency ? $event->currency->currency_symbol : '' }}{{ $event->fee }}
{{ isset($event->description) ? $event->description : '-' }}
{{ isset($event->start_time) ? \Carbon\Carbon::parse($event->start_time)->format('d-m-Y h:i A') : '-' }}
{{ isset($event->end_time) ? \Carbon\Carbon::parse($event->end_time)->format('d-m-Y h:i A') : '-' }}
{{ isset($event->voting_start_time) ? \Carbon\Carbon::parse($event->voting_start_time)->format('d-m-Y h:i A') : '-' }}
{{ isset($event->voting_end_time) ? \Carbon\Carbon::parse($event->voting_end_time)->format('d-m-Y h:i A') : '-' }}
{{ isset($event->max_participent) ? $event->max_participent : '-' }}
{{ $winner['vote_count'] }} Votes
Winner not decided yet.
@endif @elseWinner not decided yet.
@endif