dcodegroup / form-builder
Simple package which dcode uses to manage form builder
Installs: 12 907
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 4
Forks: 2
Open Issues: 0
Language:JavaScript
Requires
- php: ^8.2 || ^8.3
- laravel/framework: ^11.0||^12.0
Requires (Dev)
- larastan/larastan: *
- laravel/pint: ^1.0
- orchestra/testbench: ^9.0
- 2.x-dev
- 2.0.3
- 2.0.0
- 1.x-dev
- 1.4.1
- 1.4.0
- 1.3.1
- 1.3.0
- 1.2.9
- 1.2.8
- 1.2.7
- 1.2.6
- 1.2.5
- 1.2.4
- 1.2.3
- 1.2.2
- 1.2.1
- 1.2.0
- 1.1.6
- 1.1.5
- 1.1.4
- 1.1.3
- 1.1.2
- 1.1.1
- 1.1.0
- 1.0.17
- 1.0.15
- 1.0.14
- 1.0.13
- 1.0.12
- 1.0.11
- 1.0.10
- 1.0.9
- 1.0.8
- 1.0.7
- 1.0.6
- 1.0.5
- 1.0.4
- 1.0.3
- 1.0.2
- 1.0.1
- 1.0.0
- dev-laravel-11
- dev-feature/improve-preview-screen
- dev-feature/success_message
- dev-feature/support_call_vField_form_the_product_with_vdatepicker
- dev-bugFix/support_call_vfield_directly_from_the_project
- dev-bugfix/SEN-125-need-each-instance-of-the-group-to-be-separate-entries
- dev-feature/upgrade-form-to-have-upload-and-date-picker
- dev-feature/migrate-to-vue-3
This package is auto-updated.
Last update: 2025-03-10 05:07:35 UTC
README
This package provides the standard form builder functionality used in most projects.
Installation
PHP
You can install the package via composer:
Version / Branch | Laravel Support | Install Command |
---|---|---|
1.x | <= v10 | composer require dcodegroup/form-builder:^1.0 |
2.x | >= v11 | composer require dcodegroup/form-builder:^2.0 |
Then run the install command.
php artisan form-builder:install
This will publish the configuration file and the migration file.
Run the migrations
php artisan migrate
JS
Include this built file to your layouts:
<script type="text/javascript" src="/vendor/form-builder/index.js" defer></script>
SCSS
There is a new generated file under public/vendor/form-builder/index.css
. You must use this file in your main scss file
Run the npm build (dev/prod)
npm run dev
Configuration
Most of configuration has been set the fair defaults. However you can review the configuration file at config/form-builder.php
and adjust as needed
return [
'middleware' => ['web', 'auth'],
'layout_path' => 'layouts.app', // Make sure you have correct base layout name,
'content_section' => 'content', // Name of your content section
'route_path' => 'forms', // eg 'admin/settings/waivers',
'route_name' => 'forms', // eg 'admin.setting.waivers',
'binding' => 'form' // eg 'waiver',
]
Usage
The package provides an endpoints which you can use. See the full list by running
php artisan route:list --name=form
They are
[example.com/forms] Which is where you will form index. This is by default protected auth middleware but you can modify in the configuration. This is where you want to link to in your admin and possibly a new window
Override views
Create new folder name form-builder-views
under resources/views
section then put following files to override:
edit.blade.php
index.blade.php
show.blade.php
Traits for form validation
Located in
src\Http\Traits\FormValidator.php