@extends('layouts.app') @section('title', 'AIT TV — Watch Live') @section('meta_description', 'Watch AIT Television live — Ghana\'s Technology and Education Intelligence Platform') @section('content')
{{-- MAIN COLUMN --}}
{{-- LIVE PLAYER --}}
{{-- HLS Player placeholder -- connects to NGINX-RTMP stream on VPS --}}
AIT Television — Channel 1
Live stream will appear here when broadcasting begins
LIVE BROADCAST
{{-- Video.js player — uncomment when VPS streaming is configured --}} {{-- --}}
{{-- NOW PLAYING BAR --}}
LIVE
@if($currentTvShow)
{{ $currentTvShow->show->title }}
{{ $currentTvShow->show->host_names }} · {{ $currentTvShow->formatted_start_time }} – {{ $currentTvShow->formatted_end_time }}
@else
AIT Broadcasting Network
Ghana's Technology & Education Intelligence Platform
@endif
{{-- TODAY'S SCHEDULE --}}
📺 Today on AIT TV
{{ now()->format('l, d F Y') }}
@if($todayTvSchedule->count() > 0)
@foreach($todayTvSchedule as $schedule)
{{ $schedule->formatted_start_time }}
{{ $schedule->show->title }} @if(isset($currentTvShow) && $currentTvShow && $currentTvShow->id === $schedule->id) ● ON AIR @endif
@if($schedule->show->host_names)
{{ $schedule->show->host_names }}
@endif
{{ $schedule->formatted_start_time }} – {{ $schedule->formatted_end_time }}
@endforeach
@else
No schedule available for today.
@endif
{{-- LATEST NEWS --}}
{{-- SIDEBAR --}} @include('partials.sidebar')
@endsection