https://github.com/musonza/laravel-forms
Database driven laravel forms
https://github.com/musonza/laravel-forms
laravel-forms php-forms
Last synced: 10 months ago
JSON representation
Database driven laravel forms
- Host: GitHub
- URL: https://github.com/musonza/laravel-forms
- Owner: musonza
- Created: 2018-09-10T05:21:56.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-03-03T11:34:02.000Z (almost 3 years ago)
- Last Synced: 2025-02-27T12:08:33.823Z (11 months ago)
- Topics: laravel-forms, php-forms
- Language: PHP
- Homepage:
- Size: 4.57 MB
- Stars: 32
- Watchers: 0
- Forks: 3
- Open Issues: 20
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
Awesome Lists containing this project
README
# Laravel Forms
[](https://travis-ci.org/musonza/laravel-forms)
[](https://packagist.org/packages/musonza/laravel-forms)

## Installation
1. Install composer package
```sh
composer require musonza/laravel-forms
```
1. Publish Assets
```sh
php artisan vendor:publish
```
1. Add Form facade to `config/app.php`
```php
'Form' => Musonza\Form\Facades\FormFacade::class,
```
1. Run migrations
```sh
php artisan migrate
```
1. Check the published file config/laravel_forms.php
- You can enable / disable captcha
- You can configure the path for your forms dashboard
- You can add custom field types
1. Access dashboard at
http//your-url.com/laravel-forms (you can change the path in config/laravel_forms.php)
## Adding a Form

## Form details

## Adding a Field

## Field details

## Sample Form Output

## Sample Submission

## TODO
- Multi page forms
## Credits
https://github.com/laravel/telescope for some of the front-end structuring