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

Показване на мач

Промяна
Турнир: {{ $match->tournament->name }}
Кръг: {{$match->round->name}}
Играч 1: {{ $match->user1_id!=0 ? $match->user1->name : ''}}
Играч 2: {{ $match->user2_id!=0 ? $match->user2->name : ''}}
Начален час: {{$match->start_time!=null ? date('d.m.yy',strtotime($match->start_time)) : ''}}
Резултат: @foreach($match->sets as $set) @endforeach @foreach($match->sets as $set) @endforeach
{{$set->user_1_result}}
{{$set->user_2_result}}
Победител: {{ $match->winner_id!=0 ? $match->winner->name : ''}}
@endsection