An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# Laravel Forms

[![Build Status](https://travis-ci.org/musonza/laravel-forms.svg?branch=master)](https://travis-ci.org/musonza/laravel-forms)
[![Packagist](https://img.shields.io/packagist/v/musonza/laravel-forms.svg)](https://packagist.org/packages/musonza/laravel-forms)

forms list

## 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
adding a form

## Form details
form details

## Adding a Field
adding a field

## Field details
field details

## Sample Form Output
form output

## Sample Submission

## TODO
- Multi page forms

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