https://github.com/bernskioldmedia/laravel-form-architect
https://github.com/bernskioldmedia/laravel-form-architect
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/bernskioldmedia/laravel-form-architect
- Owner: bernskioldmedia
- License: mit
- Created: 2024-04-05T14:35:32.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-06T07:33:26.000Z (about 1 year ago)
- Last Synced: 2024-04-15T20:14:40.268Z (about 1 year ago)
- Language: PHP
- Size: 44.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# A form builder for Laravel aimed at Blade components.
[](https://packagist.org/packages/bernskioldmedia/laravel-form-architect)
[](https://github.com/bernskioldmedia/laravel-form-architect/actions?query=workflow%3Arun-tests+branch%3Amain)
[](https://packagist.org/packages/bernskioldmedia/laravel-form-architect)## Prerequisites
- Laravel 10 or higher
- PHP 8.2 or higher## Installation
You can install the package via composer:
```bash
composer require bernskioldmedia/laravel-form-architect
```### Publishing config and views
You can publish the config file with:
```bash
php artisan vendor:publish --tag="laravel-form-architect-config"
```This is the contents of the published config file:
```php
[
'form' => 'form.index',
'fieldset' => 'form.fieldset',
'field' => 'form.field',
'input' => 'form.input',
'checkbox' => 'form.checkbox',
'radio' => 'form.radio',
'select' => 'form.select',
'textarea' => 'form.textarea',
'multiselect' => 'form.multiselect',
],
];
```Optionally, you can publish the views using
```bash
php artisan vendor:publish --tag="laravel-form-architect-views"
```## Usage
## Testing
```bash
composer test
```## Changelog
Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.
## Credits
- [Bernskiold Media](https://github.com/bernskioldmedia)
- [Erik Bernskiold](https://github.com/erikbernskiold)
- [All Contributors](../../contributors)## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.