@extends('layouts.app') @section('title', 'AIT Radio 89.7 FM — Listen Live') @section('meta_description', 'Listen to AIT Radio 89.7 FM live — Ghana\'s Technology and Education Intelligence Platform') @section('content')
{{-- MAIN COLUMN --}}
{{-- RADIO PLAYER --}}
{{-- Station Identity --}}
AIT Radio 89.7 FM
Ghana's Technology & Education Intelligence Platform
{{-- Now Playing --}}
On Air Now
@if($currentRadioShow)
{{ $currentRadioShow->show->title }}
Hosted by {{ $currentRadioShow->show->host_names }}
{{ $currentRadioShow->formatted_start_time }} – {{ $currentRadioShow->formatted_end_time }}
@else
AIT Radio 89.7 FM
Streaming live 24 hours
@endif
{{-- Audio Player --}}
{{-- Progress bar --}}
LIVE
89.7 FM
{{-- HTML5 Audio element - connects to Icecast on VPS --}} {{-- Uncomment and set src when VPS is ready --}} {{-- --}}
Stream will be available when broadcasting begins
{{-- TODAY'S RADIO SCHEDULE --}}
📻 Today on AIT Radio
{{ now()->format('l, d F Y') }} Full schedule →
@if($todayRadioSchedule->count() > 0)
@foreach($todayRadioSchedule as $schedule)
{{ $schedule->formatted_start_time }}
{{ $schedule->show->title }} @if(isset($currentRadioShow) && $currentRadioShow && $currentRadioShow->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
{{-- SIDEBAR --}} @include('partials.sidebar')
@endsection