https://github.com/omnia-digital/catalyst-forms-plugin
https://github.com/omnia-digital/catalyst-forms-plugin
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/omnia-digital/catalyst-forms-plugin
- Owner: omnia-digital
- License: mit
- Created: 2023-10-04T23:10:59.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-08T00:06:04.000Z (over 1 year ago)
- Last Synced: 2025-04-11T04:06:35.842Z (9 months ago)
- Language: PHP
- Size: 122 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
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
# Forms plugin for Catalyst
[](https://packagist.org/packages/omnia-digital/catalyst-forms-plugin)
[](https://github.com/omnia-digital/catalyst-forms-plugin/actions?query=workflow%3Arun-tests+branch%3Amain)
[](https://github.com/omnia-digital/catalyst-forms-plugin/actions?query=workflow%3A"Fix+PHP+code+style+issues"+branch%3Amain)
[](https://packagist.org/packages/omnia-digital/catalyst-forms-plugin)
Allows customization of Forms using a Drag-and-Drop UI within a Filament Admin Panel. Built for the Catalyst Framework, but can be used in most Laravel packages.
## Installation
You can install the package via composer:
```bash
composer require omnia-digital/catalyst-forms-plugin
```
You can publish and run the migrations with:
```bash
php artisan vendor:publish --tag="catalyst-forms-plugin-migrations"
php artisan migrate
```
You can publish the config file with:
```bash
php artisan vendor:publish --tag="catalyst-forms-plugin-config"
```
Optionally, you can publish the views using
```bash
php artisan vendor:publish --tag="catalyst-forms-plugin-views"
```
This is the contents of the published config file:
```php
return [
];
```
## Usage
```php
$catalystFormsPlugin = new OmniaDigital\CatalystForms();
echo $catalystFormsPlugin->echoPhrase('Hello, OmniaDigital!');
```
## 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
- [Josh Torres](https://github.com/joshtorres)
- [All Contributors](../../contributors)
## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.