@extends('layouts.app') @section('content')
{{-- League Header --}} {{-- Matches Table --}}
Meccsek
@foreach($filtered as $match) @endforeach
Hazai csapat Vendég csapat Végeredmény Forduló Meccs kezdete Odds 1x2 Odds különbség Odds pontos eredményre
{{ \Carbon\Carbon::parse($match->time->starting_at->date_time)->format('Y.m.d') }} {{ $match->localTeam->data->name }} @if(isset($match->localTeam->data->logo_path)) @endif
Eredmény: {{ $match->scores->localteam_score ?? 0 }}-{{ $match->scores->visitorteam_score ?? 0 }} @if(isset($match->round->data->name)) Forduló: {{ $match->round->data->name }} @endif
{{ $match->visitorTeam->data->name }} @if(isset($match->visitorTeam->data->logo_path)) @endif {{ $match->scores->localteam_score ?? 0 }}-{{ $match->scores->visitorteam_score ?? 0 }} {{ $match->round->data->name ?? '-' }} {{ $match->time->starting_at->date_time }} @if(isset($difference_between_odds)) {{ $difference_between_odds }} @else - @endif @if(isset($pontos_eredmeny_array[$match->id])) @foreach($pontos_eredmeny_array[$match->id] as $score => $odds) {{ $score }} {{ $odds }} | @endforeach @endif
{{-- Back Button --}}
@endsection @push('scripts') @endpush