@extends('layouts.app') @section('title', 'Live Streaming Olahraga') @section('content') {{-- ============================================ FLASH MESSAGES ============================================ --}} @if(session('success')) @endif @if(session('error')) @endif {{-- ============================================ HEADER AD SLOT ============================================ --}} @include('partials.ad-slot', ['position' => 'header']) {{-- ============================================ MAIN CONTENT GRID (2 columns desktop, 1 mobile) ============================================ --}}
{{-- ============================== FEATURED STREAM PLAYER ============================== --}} @if(isset($featuredStream)) @endif {{-- ============================== BELOW PLAYER AD SLOT ============================== --}} @include('partials.ad-slot', ['position' => 'below_player']) {{-- ============================== STATS SECTION ============================== --}}
{{ isset($liveStreams) ? count($liveStreams) : 0 }}
Sedang Tayang
{{ isset($scheduledStreams) ? count($scheduledStreams) : 0 }}
Total Pertandingan
{{ $channels ?? 0 }}
Saluran
{{-- ============================== 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())
Jadwal Pertandingan
@foreach($scheduledStreams as $stream)
{{ \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
@if(isset($stream->channel_name))
{{ $stream->channel_name }}
@endif
@endforeach
@endif
{{-- /.main-grid__content --}} {{-- ============================================ RIGHT COLUMN (SIDEBAR) ============================================ --}}
{{-- ============================== SIDEBAR AD SLOT ============================== --}} @include('partials.ad-slot', ['position' => 'sidebar']) {{-- ============================== LIVE MATCH LIST (Partial) ============================== --}} @include('partials.match-list', ['streams' => $liveStreams ?? collect(), 'scheduled' => $scheduledStreams ?? collect()]) {{-- ============================== 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