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

Мачове от турнир {{$tournament->name}}


@foreach($matches as $match) @endforeach
Кръг Играч 1 Играч 2 Победител Начален час Действия
{{$match->round->name}} {{$match->user1_id!=0 ? $match->user1->name : 'Играч 1'}} {{$match->user2_id!=0 ? $match->user2->name : 'Играч 2'}} {{$match->winner_id!=0 ? $match->winner->name : ''}} {{$match->start_time!=null ? date('d.m.yy H:i',strtotime($match->start_time)) : ''}}
@endsection