@extends('layouts.app') @section('title', 'Daftar Channel Streaming') @push('css') @endpush @section('content') {{-- ============================================ PAGE HEADER ============================================ --}}

Channel Streaming

Daftar saluran yang tersedia untuk menonton live streaming

{{-- ============================================ HEADER AD SLOT ============================================ --}} @include('partials.ad-slot', ['position' => 'channels_header']) {{-- ============================================ CHANNEL GRID ============================================ --}} @if(isset($channels) && $channels->isNotEmpty())
@foreach($channels as $channel) @php $channelName = $channel->channel_name; $channelStreams = isset($streamsByChannel[$channelName]) ? $streamsByChannel[$channelName] : collect(); $streamCount = $channelStreams->count(); @endphp
{{-- Channel Header --}}
@if(!empty($channel->channel_logo)) @else
@endif
{{ $channelName }}
{{ $streamCount }} {{ $streamCount === 1 ? 'siaran tersedia' : 'siaran tersedia' }}
{{-- Stream List --}} @if($channelStreams->isNotEmpty()) @else
Belum ada siaran pada channel ini
@endif
@endforeach
@else {{-- ============================================ EMPTY STATE ============================================ --}}
Belum ada channel yang tersedia
Channel streaming akan muncul di sini ketika sudah ditambahkan.
@endif {{-- ============================================ FOOTER AD SLOT ============================================ --}} @include('partials.ad-slot', ['position' => 'channels_footer']) @endsection