jeffersongoncalves/filament-pwa
Composer 安装命令:
composer require jeffersongoncalves/filament-pwa
包简介
Filament plugin that injects the PWA <head> markup (manifest link, theme-color meta and Apple touch icons) into your panels.
README 文档
README
Filament PWA
A thin Filament plugin that turns your panels into installable Progressive Web Apps. It registers a PanelsRenderHook::HEAD_START render hook that injects the PWA <head> markup into your panels:
- the web app manifest
<link rel="manifest">, - the
<meta name="theme-color">tag, and - the Apple touch icon
<link>tags produced by laravel-pwa-favicon.
This plugin is built on top of the laravel-pwa-favicon package. The favicon/manifest routes (/manifest.json, /browserconfig.xml, /favicon.ico, ...) are registered by that package's service provider — this plugin only injects the matching <head> tags into your Filament panels.
Compatibility
| Branch | Filament | PHP | Laravel |
|---|---|---|---|
| 1.x | 5.x | ^8.3 | ^12.0 | ^13.0 |
Installation
You can install the package via composer:
composer require jeffersongoncalves/filament-pwa
The jeffersongoncalves/laravel-pwa-favicon package is installed as a dependency. Follow its README to publish the favicon assets and enable the manifest/favicon routes — without it the manifest link will point at a route that does not exist.
Usage
Register the plugin in your PanelProvider:
use JeffersonGoncalves\Filament\Pwa\FilamentPwaPlugin; public function panel(Panel $panel): Panel { return $panel ->plugins([ FilamentPwaPlugin::make(), ]); }
The plugin will inject the manifest link, the theme-color meta tag and the Apple touch icon links into the panel's <head>.
Customisation
FilamentPwaPlugin::make() ->themeColor('#0ea5e9') // <meta name="theme-color">, defaults to #ffffff ->manifestUrl('/manifest.json'), // <link rel="manifest"> href, defaults to /manifest.json
The render hook is scoped to the panel it is registered on, so you can enable the PWA <head> markup per panel.
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
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.
统计信息
- 总下载量: 0
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-06-20
