@extends('admin.layouts.master') @section('content')

ตั้งค่าราคา

รอบวันที่ {{ $gameRound->date->format('d/m/Y') }}
{{-- เพิ่มคู่แข่งขัน --}} {{ $gameRound->fixtures_count }} @if ($gameRound->status === \App\GameRound::STATUS_AVAILABLE) @endif

แสดง {{ number_format(count($gameRound->fixtures)) }} จากทั้งหมด {{ number_format(count($gameRound->fixtures)) }} รายการ

@foreach ($gameRound->fixtures as $fixture) @endforeach
เวลา ลีกส์ ทีมเหย้า ตั้งค่าราคา ทีมเยือน ดำเนินการ
{{ $fixture->date->format('Y-m-d H:i') }} {{ $fixture->league->name }} {{ $fixture->homeTeam->name }} status !== \App\Fixture::STATUS_NOT_STARTED || $gameRound->status !== \App\GameRound::STATUS_AVAILABLE ? 'disabled' : '' }} /> status !== \App\Fixture::STATUS_NOT_STARTED || $gameRound->status !== \App\GameRound::STATUS_AVAILABLE ? 'disabled' : '' }} /> status !== \App\Fixture::STATUS_NOT_STARTED || $gameRound->status !== \App\GameRound::STATUS_AVAILABLE ? 'disabled' : '' }} /> {{ $fixture->awayTeam->name }} @if ($fixture->status === \App\Fixture::STATUS_NOT_STARTED && $gameRound->status === \App\GameRound::STATUS_AVAILABLE) @endif
@endsection @section('script') @endsection @section('modal') @endsection