PHPackages                             jeffgreco13/filament-wave - 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. jeffgreco13/filament-wave

ActiveLibrary

jeffgreco13/filament-wave
=========================

This is my package filament-wave

v0.5.4(2y ago)020MITPHPPHP ^8.1

Since Nov 22Pushed 2y ago1 watchersCompare

[ Source](https://github.com/jeffgreco13/filament-wave)[ Packagist](https://packagist.org/packages/jeffgreco13/filament-wave)[ Docs](https://github.com/jeffgreco13/filament-wave)[ RSS](/packages/jeffgreco13-filament-wave/feed)WikiDiscussions 0.x Synced 1mo ago

READMEChangelog (8)Dependencies (10)Versions (11)Used By (0)

FilamentWave
============

[](#filamentwave)

[![Latest Version on Packagist](https://camo.githubusercontent.com/1fdd9686a60bf37e0e3d041061a2eeb54848d2ce596975b299128e4bbc290a43/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6a656666677265636f31332f66696c616d656e742d776176652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/jeffgreco13/filament-wave)[![GitHub Tests Action Status](https://camo.githubusercontent.com/166806ec2cd6e0472f4552a9a6bba675b7f797d8928ac8fae84c3f15a08413e5/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f6a656666677265636f31332f66696c616d656e742d776176652f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/jeffgreco13/filament-wave/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/57c64249da815c7e34040e0bbdf374b054cb62917c74e3c6bd11877789a3990b/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f6a656666677265636f31332f66696c616d656e742d776176652f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/jeffgreco13/filament-wave/actions?query=workflow%3A%22Fix+PHP+code+style+issues%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/a896f91791c2a13ea72241cc783634b9c7350e9b7696a3a5024b9b342b4f1ba6/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6a656666677265636f31332f66696c616d656e742d776176652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/jeffgreco13/filament-wave)

A Filament V3 plugin to create robust integrations for Wave Apps/Accounting.

Expert Support
--------------

[](#expert-support)

Looking for a custom integration or solution? Contact me

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require jeffgreco13/filament-wave
```

Update your .env file to include:

```
WAVE_ACCESS_TOKEN= *your full access token*
WAVE_BUSINESS_ID= *ID for the business you wish to interact with*
WAVE_GRAPHQL_URI= *defaults to https://gql.waveapps.com/graphql/public*

```

This package uses [jeffgreco13/laravel-wave](https://github.com/jeffgreco13/laravel-wave) under the hood. Review the docs for more information.

Add the `WavePlugin` to your panel service provider:

```
use Jeffgreco13\FilamentWave\WavePlugin;

class AdminPanelProvider extends PanelProvider
{
    public function panel(Panel $panel): Panel
    {
        return $panel
            ...
            ->plugin(
                WavePlugin::make()
            );
    }
}
```

Usage
-----

[](#usage)

I've build this package to be as modular and extensible as possible. Meaning you can publish migrations and utilize Filament resources only as needed. See below on how to use each model:

### Customers

[](#customers)

Publish the customers migration table using.

```
php artisan vendor:publish --tag="filament-wave-customers-migration"
php artisan migrate
```

Next, add the `customers` method to the WavePlugin in your panel service provider:

```
WavePlugin::make()->customers()
```

You can customize the Resource, Model:

```
WavePlugin::make()
    ->customers(
        model:YourCustomerClass::class,
        resource:YourCustomerResource::class
    )
```

Or you can disable the Resource:

```
WavePlugin::make()
    ->customers(
        resource:null
    )
```

### Products

[](#products)

Publish the products migration table using.

```
php artisan vendor:publish --tag="filament-wave-products-migration"
php artisan migrate
```

Next, add the `products` method to the WavePlugin in your panel service provider:

```
WavePlugin::make()->products()
```

See [Customers](#customers) for more customization options.

### Currencies

[](#currencies)

See [jeffgreco13/laravel-wave](https://github.com/jeffgreco13/laravel-wave) for interacting with Wave currencies.

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

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

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

[](#contributing)

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

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

[](#security-vulnerabilities)

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

Credits
-------

[](#credits)

- [Jeff Greco](https://github.com/jeffgreco13)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

22

—

LowBetter than 22% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity47

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 ~11 days

Total

9

Last Release

813d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/89c96adbc3b802ff12fb5ccfab0e0d6e352039505e9ee0cd13496c205a1d933e?d=identicon)[jeffgreco13](/maintainers/jeffgreco13)

---

Top Contributors

[![jeffgreco13](https://avatars.githubusercontent.com/u/12453974?v=4)](https://github.com/jeffgreco13 "jeffgreco13 (15 commits)")

---

Tags

laravelJeff Grecofilament-wave

###  Code Quality

TestsPest

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/jeffgreco13-filament-wave/health.svg)

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

###  Alternatives

[bezhansalleh/filament-shield

Filament support for `spatie/laravel-permission`.

2.8k2.9M88](/packages/bezhansalleh-filament-shield)[guava/calendar

Adds support for vkurko/calendar to Filament PHP.

298241.0k3](/packages/guava-calendar)[guava/filament-knowledge-base

A filament plugin that adds a knowledge base and help to your filament panel(s).

206120.5k1](/packages/guava-filament-knowledge-base)[vormkracht10/laravel-mails

Laravel Mails can collect everything you might want to track about the mails that has been sent by your Laravel app.

24149.7k](/packages/vormkracht10-laravel-mails)[bezhansalleh/filament-plugin-essentials

A collection of essential traits that streamline Filament plugin development by taking care of the boilerplate, so you can focus on shipping real features faster

27584.7k16](/packages/bezhansalleh-filament-plugin-essentials)[guava/filament-modal-relation-managers

Allows you to embed relation managers inside filament modals.

7565.0k4](/packages/guava-filament-modal-relation-managers)

PHPackages © 2026

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