{{-- ==============================
FEATURED STREAM PLAYER
============================== --}}
@if(isset($featuredStream))
@endif
{{-- ==============================
BELOW PLAYER AD SLOT
============================== --}}
@include('partials.ad-slot', ['position' => 'below_player'])
{{-- ==============================
STATS SECTION
============================== --}}
{{-- ==============================
LIVE STREAMS GRID
============================== --}}
@if(isset($liveStreams) && $liveStreams->isNotEmpty())
@endif
{{-- ==============================
BETWEEN MATCHES AD SLOT
============================== --}}
@include('partials.ad-slot', ['position' => 'between_matches'])
{{-- ==============================
SCHEDULED MATCHES
============================== --}}
@if(isset($scheduledStreams) && $scheduledStreams->isNotEmpty())
@endif
{{-- /.main-grid__content --}}
{{-- ============================================
RIGHT COLUMN (SIDEBAR)
============================================ --}}
{{-- /.main-grid__sidebar --}}
{{-- LIVE Badge --}}
@if($featuredStream->is_live)
LIVE NOW
@endif
{{-- Video Player Area --}}
@if($featuredStream->stream_type === 'm3u8')
@elseif($featuredStream->stream_type === 'embed')
@else
@endif
{{-- Match Info Below Player --}}
Tipe streaming tidak didukung
{{-- Teams & Scores --}}
{{-- League --}}
@if(isset($featuredStream->league))
{{ $featuredStream->home_team }}
{{ $featuredStream->home_score ?? 0 }}
-
{{ $featuredStream->away_score ?? 0 }}
{{ $featuredStream->away_team }}
{{ $featuredStream->league }}
@endif
{{-- Channel & Time --}}
@if(isset($featuredStream->channel_logo))
@endif
{{ $featuredStream->channel_name ?? '' }}
{{ $featuredStream->match_time ?? '' }}
{{ isset($liveStreams) ? count($liveStreams) : 0 }}
Sedang Tayang
{{ isset($scheduledStreams) ? count($scheduledStreams) : 0 }}
Total Pertandingan
{{ $channels ?? 0 }}
Saluran
Siaran Langsung
Jadwal Pertandingan
@foreach($scheduledStreams as $stream)
@if(isset($stream->channel_name))
@endforeach
{{ \Carbon\Carbon::parse($stream->match_time)->format('H:i') }}
{{ \Carbon\Carbon::parse($stream->match_time)->format('d M') }}
{{ $stream->home_team }} vs {{ $stream->away_team }}
@if(isset($stream->league))
{{ $stream->league }}
@endif
{{ $stream->channel_name }}
@endif