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

v1.2.7 2025-11-01 20:13 UTC

This package is auto-updated.

Last update: 2025-11-01 20:15:06 UTC


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

Screenshot of the audio column

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.