@extends('layouts.master')
@section('pageStyle')
@endsection
@section('content')
About
- Tournament Name: {{ $tournament->name }}
- Status:
{{ $tournament->status ? 'Active' : 'Inactive' }}
- Description:
{{ $tournament->description }}
- Slug: {{ $tournament->slug }}
- Start Date and Time:
{{ customDateFormat($tournament->start_date) }} -
{{ customTimeFormat($tournament->start_time) }}
- End Date and Time:
{{ customDateFormat($tournament->end_date) }} -
{{ customTimeFormat($tournament->end_time) }}
- Creator:
{{ ucfirst($tournament->user->name) }}
Creator Contacts
- Contact: {{ $tournament->user->phone }}
- Creator Email:
{{ $tournament->user->email }}
Players
@if(count($tournament->users) > 0 )
@foreach($tournament->users as $player)
- {{ $player->name }}:
{{ handleBooleanStatus($player->status) }}
@endforeach
@else
No Players Listed
@endif
@endsection
@section('scripts')
@endsection