You've already forked Atomcms-edit
0c6c558a59
- Embed widget: standalone iframe player with dark/light/transparent themes, copy-paste embed code admin page - Real-time SSE: streaming now-playing/listeners/dj events, replaces polling in radio-player and embed - Song history: auto-records song changes to radio_song_plays table, Filament resource to view - DJ moderation: unified panel for shouts approval, song request queue, DJ applications - Auto DJ: playlist management with round-robin playback when no DJ is live - Refactored radio-player Alpine component to use EventSource API with auto-reconnect
15 lines
337 B
PHP
15 lines
337 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Filament\Resources\RadioSongPlay\Pages;
|
|
|
|
use App\Filament\Resources\RadioSongPlay\RadioSongPlayResource;
|
|
use Filament\Resources\Pages\ManageRecords;
|
|
|
|
class ManageRadioSongPlays extends ManageRecords
|
|
{
|
|
#[\Override]
|
|
protected static string $resource = RadioSongPlayResource::class;
|
|
}
|