Search by

tomatophp / filament-pwa

fadymondy

get a PWA feature on your FilamentPHP app with settings from panel

Package info

github.com/tomatophp/filament-pwa

pkg:composer/tomatophp/filament-pwa

Fund package maintenance!

3x1io

Statistics

Installs: 26 634

Dependents: 0

Suggesters: 0

Stars: 93

Open Issues: 0

5.0.0 2026-09-15 06:42 UTC

This package is auto-updated.

Last update: 2026-09-15 06:43:42 UTC


README

Screenshot

Filament PWA

Latest Stable Version License Downloads

get a PWA feature on your FilamentPHP app with settings from panel

Version Compatibility

Plugin Filament Laravel PHP
5.x 5.x 12.x - 13.x 8.2+
4.x 4.x 11.x - 12.x 8.2+
1.x 3.x 10.x - 11.x 8.1+

Installation

composer require tomatophp/filament-pwa

The settings are stored with Filament Settings Hub, which creates the settings table. If it is not installed yet, run its installer first:

php artisan filament-settings-hub:install

after install your package please run this command

php artisan filament-pwa:install

finally register the plugin on /app/Providers/Filament/AdminPanelProvider.php

->plugin(\TomatoPHP\FilamentPWA\FilamentPWAPlugin::make())

Upload Disk

Icons, splash screens and shortcut icons are stored on the public disk. To use another disk (for example s3), set it in .env or in the published config:

FILAMENT_PWA_UPLOAD_DISK=s3

The URLs in the manifest then come from that disk's url().

Screenshots

Install App Settings Settings Dark

Use Directive

you can use directive to allow PWA on none-FilamentPHP pages, just add this directive to your blade file on top of </head>

@filamentPWA

Publish Assets

you can publish config file by use this command

php artisan vendor:publish --tag="filament-pwa-config"

you can publish views file by use this command

php artisan vendor:publish --tag="filament-pwa-views"

you can publish languages file by use this command

php artisan vendor:publish --tag="filament-pwa-lang"

Other Filament Packages

Checkout our Awesome TomatoPHP