{{ __('match.text_predict_correct_rate') }}

{{$data['text_predict_correct_rate']['title']}}

{{ __('match.text_win_rate') }}

{{$data['text_win_rate']['title']}}

{{ __('match.text_correct_matches') }}

{{$data['text_correct_matches']['title']}}
@foreach($tournaments as $tournamentGroup) @php $tournament = $tournamentGroup->first()->tournament; // 获取赛事类型信息 @endphp
@foreach($tournamentGroup->sortBy('start_time') as $match) @php $currentTime = now(); $matchStartTime = $match->start_time; $minutesDifference = $matchStartTime->diffInMinutes($currentTime, false); // $timeSinceStart = $currentTime->diffInMinutes($matchStartTime, false); @endphp {{-- @if($match->start_time < now() || $match->start_time->diffInMinutes(now(), false) >= 120) --}} {{-- @if($matchStartTime < now() || $minutesDifference>= 90) --}} @if($matchStartTime->diffInMinutes(now(), false) >=90) {{-- --}} @include('partials.match_predictions', ['match' => $match]) @else @if(auth()->check()) @if(auth()->user()->activeSubscription() || Auth::user()->role == "admin") @include('partials.match_predictions', ['match' => $match]) @else @include('partials.locked_match_details') @endif @else @include('partials.not_logged_match_details') @endif @endif @endforeach
{{ __('match.text_date') }} {{ __('match.text_match') }} 1 X 2 {{ __('match.text_tip') }} {{ __('match.text_handicap') }} {{ __('match.text_o_u') }} {{ __('match.text_correct_score') }} {{ __('match.text_best_tip') }}
{{ $match->start_time->format('H:i') }}
{{-- @if($matchStartTime->diffInMinutes(now(), false) >=90) {{ __('match.text_finished') }} @else {{ __('match.text_upcoming') }} @endif --}} @if($matchStartTime > $currentTime) {{ __('match.text_upcoming') }} @elseif($minutesDifference >= 0 && $minutesDifference < 90) {{ __('match.text_in_progress') }} @else {{ __('match.text_finished') }} @endif
{{ $match->teamA->name}}
@if($match->team_a_result != "-" && $match->team_b_result != "") {{$match->team_a_result}}:{{$match->team_b_result}} @else VS @endif
{{ $match->teamB->name}}
@php echo $minutesDifference @endphp
@foreach($tournamentGroup->sortBy('start_time') as $match) @php $currentTime = now(); $matchStartTime = $match->start_time; $minutesDifference = $matchStartTime->diffInMinutes($currentTime, false); // $timeSinceStart = $currentTime->diffInMinutes($matchStartTime, false); @endphp {{-- @if($match->start_time < now() || $match->start_time->diffInMinutes(now(), false) >= 120) --}} @if($matchStartTime->diffInMinutes(now(), false) >=90) @include('partials.match_predictions_mobile', ['match' => $match]) @elseif(auth()->check()) @if(auth()->user()->activeSubscription()) @include('partials.match_predictions_mobile', ['match' => $match]) @else @endif @else @endif
{{ $match->start_time->format('H:i') }} @if($matchStartTime > $currentTime) {{ __('match.text_upcoming') }} @elseif($minutesDifference >= 0 && $minutesDifference < 90) {{ __('match.text_in_progress') }} @else {{ __('match.text_finished') }} @endif
{{ $match->teamA->name}}
@if($match->team_a_result != "-" && $match->team_b_result != "") {{$match->team_a_result}}:{{$match->team_b_result}} @else VS @endif
{{ $match->teamB->name}}
1 X 2 {{ __('match.text_tip') }} {{ __('match.text_handicap') }} {{ __('match.text_o_u') }} {{ __('match.text_correct_score') }} {{ __('match.text_best_tip') }}
@endforeach
@endforeach