@extends('layouts.app') @section('content')
@include('shared.messages')

Показване на турнир

@if(count($tournament->matches)==0) Генерирай схема @else Схема на турнира @endif Промяна
Име: {{ $tournament->name }}
Спортна площадка: {{ $tournament->playground->name }}
Спорт: {{ __('texte.sports_arr')[$tournament->sport_id]}}
Период: {{date('d.m.yy',strtotime($tournament->date_from))}} - {{date('d.m.yy',strtotime($tournament->date_to))}}
Точки за спечелени геймове: {{ $tournament->add_points==1 ? 'Да' : 'Не' }}
Участници: {{ $tournament->participants }}
Участници: {{ $tournament->participants }}
Такса: {{ $tournament->fee!=0 ? $tournament->fee : 'Без такса' }}
@if($tournament->info!=null)
Информация: {!! $tournament->info!!}
@endif
Схема:
@foreach($tournament->rounds as $index=>$round) {{$round->name}}:{{$round->points}}точки @endforeach
@endsection