mayakhan719 / filament-audio-column
A Filament plugin that provides an AudioColumn for playing audio files in tables.
Installs: 2
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Language:Blade
pkg:composer/mayakhan719/filament-audio-column
Requires
- php: ^8.2
- filament/filament: ^3.2|^4.0
- laravel/framework: ^12.0
README
A Filament Table Column for playing audio files.
Installation
You can install the package via composer:
composer require mayakhan719/filament-audio-column
Usage
use Mayakhan719\Tables\Columns\AudioColumn; public static function table(Table $table): Table { return $table ->columns([ AudioColumn::make('audio'), ]); }
You can also customize the column:
use Maya\Tables\Columns\AudioColumn; public static function table(Table $table): Table { return $table ->columns([ AudioColumn::make('audio') ->label('Podcast Episode') ->native(true) // ->native(false) use Player.style Audio Player ]); }
Screenshots
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.
