https://github.com/defstudio/filament-money
https://github.com/defstudio/filament-money
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/defstudio/filament-money
- Owner: defstudio
- License: mit
- Created: 2025-01-15T09:12:12.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-16T22:47:15.000Z (12 months ago)
- Last Synced: 2025-06-18T17:53:03.300Z (12 months ago)
- Language: PHP
- Size: 209 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
- Security: .github/SECURITY.md
Awesome Lists containing this project
README
# An opinionated Filament money fields and columns handler
[](https://packagist.org/packages/defstudio/filament-money)
[](https://github.com/defstudio/filament-money/actions?query=workflow%3Arun-tests+branch%3Amain)
[](https://github.com/defstudio/filament-money/actions?query=workflow%3A"Fix+PHP+code+styling"+branch%3Amain)
[](https://packagist.org/packages/defstudio/filament-money)
This is where your description should go. Limit it to a paragraph or two. Consider adding a small example.
## Installation
You can install the package via composer:
```bash
composer require defstudio/filament-money
```
You can publish and run the migrations with:
```bash
php artisan vendor:publish --tag="filament-money-migrations"
php artisan migrate
```
You can publish the config file with:
```bash
php artisan vendor:publish --tag="filament-money-config"
```
Optionally, you can publish the views using
```bash
php artisan vendor:publish --tag="filament-money-views"
```
This is the contents of the published config file:
```php
return [
];
```
## Usage
```php
$filamentMoney = new DefStudio\FilamentMoney();
echo $filamentMoney->echoPhrase('Hello, DefStudio!');
```
## Testing
```bash
composer test
```
## Changelog
Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.
## Contributing
Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.
## Security Vulnerabilities
Please review [our security policy](../../security/policy) on how to report security vulnerabilities.
## Credits
- [Fabio Ivona](https://github.com/fabio-ivona)
- [All Contributors](../../contributors)
## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.