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

{{ $tournament->name }}

@foreach ($tournament->matches as $match) @endforeach
# Home Away Venue Referee Date
{{ $match->id }} {{ $match->homeTeam()->first()->getName() }} {{ $match->score }}
{{$match->half_score}}
{{ $match->awayTeam()->first()->getName() }} {{ $match->getDisplayName() }} {{ $match->referee }} {{ $match->getDisplayDate() }}
@endforeach @endsection