Download the PHP package badore/contabi_form without Composer
On this page you can find all versions of the php package badore/contabi_form. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package contabi_form
Contabi Form
Introduction
Laravel easy form manager based on bootstrap
Official Documentation
Installation
The scaffolding is located in the badore/contabi_form
Composer package, which may be installed using Composer:
Once the badore/contabi_form
package has been installed, you may install the frontend scaffolding using the contabiform
Artisan command:
Basic Usage
Controller
Form View example
Form row example
Select your form new ContabiForm('horizontal')
new ContabiForm('inline')
new ContabiForm('row')
View
{{ $form->open('POST','route') }}
Methods
Start the form in your blade view file
{{ $form->open('POST','doctors.store') }}
{{ $form->open('GET','doctors.store') }}
Input text
{{ $form->input('title', 'required', 4) }}
Params: ['title'] (also included for label
, name
and id
, ['required' -or- 'null'], [lenght: es 4]
input Date (require bootstrap datepicker)
{{ $form->inputData('data', null, 1) }}
input money (number)
{{ $form->inputMoney('importo', null, 1) }}
//money es: 125,00
input file
{{ $form->file('file', 'required') }}
input email
{{ $form->email('email', required , 4) }}
input select
{{ $form->select('titolo', array(), required , 2) }}
Params: ['title'], [array values], ['required' -o- 'null'], [lenght: es 4]
input
{{ $form->textarea('testo', required) }}
Button
{{ $form->button('Save', 'success') }}
Params: ['title'], ['bootstrap color: success, info, warning, danger, dark, light']
Form close
{{ $form->close() }}