@extends('layout.default') @section('content') @foreach ($tournaments as $tournament)

{{ $tournament->name }}

@foreach ($tournament->matches as $match) @if ($match->getVideoUrl()) @else @endif @endforeach
# Home Away Venue Referee Date Video
{{ $match->id }} {{ $match->getHomeTeam()->getName() }} {{ $match->score }}
{{$match->half_score}}
{{ $match->getAwayTeam()->getName() }} {{ $match->getDisplayName() }} {{ $match->referee }} {{ $match->getDisplayDate() }}Play
@endforeach @endsection