PHPackages                             jeffersongoncalves/filament-pwa - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. jeffersongoncalves/filament-pwa

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

jeffersongoncalves/filament-pwa
===============================

Filament plugin that injects the PWA &lt;head&gt; markup (manifest link, theme-color meta and Apple touch icons) into your panels.

1.0.1(today)10MITPHPPHP ^8.3CI passing

Since Jun 20Pushed today1 watchersCompare

[ Source](https://github.com/jeffersongoncalves/filament-pwa)[ Packagist](https://packagist.org/packages/jeffersongoncalves/filament-pwa)[ Docs](https://github.com/jeffersongoncalves/filament-pwa)[ RSS](/packages/jeffersongoncalves-filament-pwa/feed)WikiDiscussions 1.x Synced today

READMEChangelog (3)Dependencies (9)Versions (3)Used By (0)

[![Filament PWA](https://raw.githubusercontent.com/jeffersongoncalves/filament-pwa/1.x/art/jeffersongoncalves-filament-pwa.png)](https://raw.githubusercontent.com/jeffersongoncalves/filament-pwa/1.x/art/jeffersongoncalves-filament-pwa.png)

Filament PWA
============

[](#filament-pwa)

[![Latest Version on Packagist](https://camo.githubusercontent.com/797170e7ecf9cf2d20383e07ac3f6273c4fb759bec8163ec30b616098b519275/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6a6566666572736f6e676f6e63616c7665732f66696c616d656e742d7077612e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/jeffersongoncalves/filament-pwa)[![GitHub Tests Action Status](https://camo.githubusercontent.com/c429274ef71d2314c29d11f37b6994f03a5ae176e95e33943a291525d09d2f7a/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f6a6566666572736f6e676f6e63616c7665732f66696c616d656e742d7077612f74657374732e796d6c3f6272616e63683d312e78266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/jeffersongoncalves/filament-pwa/actions?query=workflow%3ATests+branch%3A1.x)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/723ee561e82fa881d3bc44253aec6ed42e7130873d230919731799e9679d6e85/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f6a6566666572736f6e676f6e63616c7665732f66696c616d656e742d7077612f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d312e78266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/jeffersongoncalves/filament-pwa/actions?query=workflow%3A%22Fix+PHP+code+styling%22+branch%3A1.x)[![Total Downloads](https://camo.githubusercontent.com/9e171ce40dcc31a144d1bde68eb2c50aca45ec7916178f7eeba43d8033c4d349/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6a6566666572736f6e676f6e63616c7665732f66696c616d656e742d7077612e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/jeffersongoncalves/filament-pwa)[![License](https://camo.githubusercontent.com/8376637891dac2cc06cfa51821bd59c5e3ba2e2245d4ab1ac575ef33d57a6cd8/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f6a6566666572736f6e676f6e63616c7665732f66696c616d656e742d7077612e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)

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 `` markup into your panels:

- the web app manifest ``,
- the `` tag, and
- the Apple touch icon `` tags produced by [laravel-pwa-favicon](https://github.com/jeffersongoncalves/laravel-pwa-favicon).

This plugin is built on top of the [laravel-pwa-favicon](https://github.com/jeffersongoncalves/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 `` tags into your Filament panels.**

Compatibility
-------------

[](#compatibility)

BranchFilamentPHPLaravel**1.x****5.x****^8.3****^12.0 | ^13.0**Installation
------------

[](#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
-----

[](#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 ``.

### Customisation

[](#customisation)

```
FilamentPwaPlugin::make()
    ->themeColor('#0ea5e9')          // , defaults to #ffffff
    ->manifestUrl('/manifest.json'), //  href, defaults to /manifest.json
```

The render hook is scoped to the panel it is registered on, so you can enable the PWA `` markup per panel.

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Jefferson Goncalves](https://github.com/jeffersongoncalves)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

41

—

FairBetter than 87% of packages

Maintenance100

Actively maintained with recent releases

Popularity2

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity49

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

3

Last Release

0d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/411493?v=4)[Jefferson Gonçalves](/maintainers/jeffersongoncalves)[@jeffersongoncalves](https://github.com/jeffersongoncalves)

---

Top Contributors

[![jeffersongoncalves](https://avatars.githubusercontent.com/u/411493?v=4)](https://github.com/jeffersongoncalves "jeffersongoncalves (7 commits)")

---

Tags

faviconfilamentfilament-pluginjeffersongoncalveslaravellaravel-packagemanifestphppwalaravelfaviconfilamentjeffersongoncalvespwamanifestfilament-pwa

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/jeffersongoncalves-filament-pwa/health.svg)

```
[![Health](https://phpackages.com/badges/jeffersongoncalves-filament-pwa/health.svg)](https://phpackages.com/packages/jeffersongoncalves-filament-pwa)
```

###  Alternatives

[ysfkaya/filament-phone-input

A phone input component for Laravel Filament

3141.2M25](/packages/ysfkaya-filament-phone-input)[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3913.7k](/packages/rawilk-profile-filament-plugin)[dotswan/filament-map-picker

Easily pick and retrieve geo-coordinates using a map-based interface in your Filament applications.

128173.7k3](/packages/dotswan-filament-map-picker)[stephenjude/filament-feature-flags

Filament implementation of feature flags and segmentation with Laravel Pennant.

122157.7k1](/packages/stephenjude-filament-feature-flags)[creagia/filament-code-field

A Filamentphp input field to edit or view code data.

57301.3k3](/packages/creagia-filament-code-field)[jibaymcs/filament-tour

Bring the power of DriverJs to your Filament panels and start a tour !

12351.0k](/packages/jibaymcs-filament-tour)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
