@extends('layouts.app') @section('title', $stream->title) @section('content') {{-- ============================================ BREADCRUMB ============================================ --}} {{-- ============================================ HEADER AD SLOT ============================================ --}} @include('partials.ad-slot', ['position' => 'header']) {{-- ============================================ MAIN CONTENT GRID (2 columns desktop, 1 mobile) ============================================ --}}
{{-- ============================== VIDEO PLAYER ============================== --}}
{{-- LIVE Badge --}} @if($stream->is_live)
LIVE NOW
@endif {{-- Video Player Area --}}
@if($stream->stream_type === 'm3u8') @elseif($stream->stream_type === 'embed')
@else

Tipe streaming tidak didukung

@endif
{{-- ============================== MATCH DETAILS CARD ============================== --}}
{{-- Teams & Scores --}}
{{ $stream->home_team }}
{{ $stream->home_score ?? 0 }} - {{ $stream->away_score ?? 0 }}
{{ $stream->away_team }}
{{-- League Badge --}} @if($stream->league)
{{ $stream->league }}
@endif {{-- Channel & Time --}}
@if($stream->channel_logo) @endif {{ $stream->channel_name ?? '' }}
{{ $stream->match_time ?? '' }}
{{-- Description --}} @if($stream->description)
Informasi Pertandingan

{{ $stream->description }}

@endif
{{-- ============================== BELOW PLAYER AD SLOT ============================== --}} @include('partials.ad-slot', ['position' => 'below_player'])
{{-- /.main-grid__content --}} {{-- ============================================ RIGHT COLUMN (SIDEBAR) ============================================ --}}
{{-- ============================== SIDEBAR AD SLOT ============================== --}} @include('partials.ad-slot', ['position' => 'sidebar']) {{-- ============================== RELATED STREAMS LIST ============================== --}} @if($relatedStreams && $relatedStreams->isNotEmpty()) @endif {{-- ============================== SIDEBAR 2 AD SLOT ============================== --}} @include('partials.ad-slot', ['position' => 'sidebar_2'])
{{-- /.main-grid__sidebar --}}
{{-- /.main-grid --}} {{-- ============================================ FOOTER AD SLOT ============================================ --}} @include('partials.ad-slot', ['position' => 'footer']) @endsection {{-- ============================================ PAGE-SPECIFIC SCRIPTS ============================================ --}} @push('scripts') @endpush