@extends('layouts.app') @section('title', 'Kelola Streams') @push('css') @endpush @section('content')
{{-- ===== SIDEBAR ===== --}} {{-- ===== MAIN ===== --}}
{{-- TOP BAR --}}
▶ Kelola Streams
A
{{ Auth::check() ? Auth::user()->name : 'Admin' }}
⏻ Keluar
{{-- CONTENT --}}
{{-- PAGE HEADER --}} {{-- FILTER TABS --}}
{{-- STREAMS TABLE --}}
@if($streams->count())
@foreach($streams as $stream) @endforeach
ID Judul Liga Home vs Away Skor Channel Tipe Status Aksi
#{{ $stream->id }} {{ $stream->title }} {{ $stream->league ?? '-' }} {{ $stream->home_team ?? '-' }} vs {{ $stream->away_team ?? '-' }} {{ $stream->home_score ?? 0 }} - {{ $stream->away_score ?? 0 }} {{ $stream->channel_name ?? '-' }} @if($stream->stream_type === 'embed') Embed @else M3U8 @endif @if($stream->is_live) LIVE @elseif($stream->status === 'scheduled') Terjadwal @elseif($stream->status === 'inactive') Nonaktif @else Selesai @endif ✏️ Edit @if($stream->trashed()) @else @endif
@else
📭

Belum ada stream yang tersedia.

@endif
{{-- ===== ADD/EDIT STREAM MODAL ===== --}} {{-- ===== SCORE UPDATE MODAL ===== --}} {{-- ===== TOAST CONTAINER ===== --}}
@endsection @push('js') @endpush