LaravelPackages.net
Acme Inc.
Toggle sidebar
tomatophp/filament-pwa

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

24.526
91
v4.0.0
About tomatophp/filament-pwa

tomatophp/filament-pwa is a Laravel package for get a pwa feature on your filamentphp app with settings from panel. It currently has 91 GitHub stars and 24.526 downloads on Packagist (latest version v4.0.0). Install it with composer require tomatophp/filament-pwa. Discover more Laravel packages by tomatophp or browse all Laravel packages to compare alternatives.

Last updated

Screenshot

Filament PWA

Latest Stable Version License Downloads

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

Installation

composer require tomatophp/filament-pwa

now you need to publish and migrate settings table

php artisan vendor:publish --provider="Spatie\LaravelSettings\LaravelSettingsServiceProvider" --tag="migrations"
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())

Screenshots

Install App Setting Hub Setting Page

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

Comments