@extends('layouts.layout') @section('content')
Leggyakrabban előforduló eredmények @foreach($most_frequent as $most)
{{$most}}
@endforeach| Hazai csapat | Vendég csapat | Végeredmény | Szezon | Forduló | Odds |
|---|---|---|---|---|---|
| {{$match->localTeam->data->name}} |
{{$match->visitorTeam->data->name}} |
{{$match->scores->localteam_score}}-{{$match->scores->visitorteam_score}} | {{$match->season->data->name}} | @if(property_exists($match, 'round')) {{$match->round->data->name}} @else Nem bajnokság @endif | @if($match->flatOdds->data != null) @foreach($match->flatOdds->data as $threeway_odds) @if($threeway_odds->market_id == 1) @isset($threeway_odds->odds[0]) @if($threeway_odds->odds[0]->winning == true) Hazai: {{$threeway_odds->odds[0]->value}} @else Hazai: {{$threeway_odds->odds[0]->value}} @endif @endisset @isset($threeway_odds->odds[1]) @if($threeway_odds->odds[1]->winning == true) Döntetlen: {{$threeway_odds->odds[0]->value}} @else Döntetlen: {{$threeway_odds->odds[1]->value}} @endif @endisset @isset($threeway_odds->odds[2]) @if($threeway_odds->odds[2]->winning == true) Vendég: {{$threeway_odds->odds[2]->value}} @else Vendég: {{$threeway_odds->odds[2]->value}} @endif @endisset @endif @endforeach @else Hiányzó adat @endif |