PHPackages                             badore/contabi\_form - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. badore/contabi\_form

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

badore/contabi\_form
====================

Laravel easy form manager

v1.0.0(1y ago)012MITPHPPHP &gt;=8.2

Since Aug 25Pushed 1y ago1 watchersCompare

[ Source](https://github.com/thorvh/contabiform)[ Packagist](https://packagist.org/packages/badore/contabi_form)[ RSS](/packages/badore-contabi-form/feed)WikiDiscussions main Synced 2d ago

READMEChangelog (1)DependenciesVersions (2)Used By (0)

Contabi Form
============

[](#contabi-form)

[![Total Downloads](https://camo.githubusercontent.com/25fdb4e80be8c18518964d0a54e27e2e74778f6059fb88ef4ad434efca17c68f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6261646f72652f636f6e746162695f666f726d)](https://packagist.org/packages/badore/contabi_form)[![Latest Stable Version](https://camo.githubusercontent.com/d11f407d419056c03da41480d5611ef63e24df06e132ee949543f3cf89670f48/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6261646f72652f636f6e746162695f666f726d)](https://packagist.org/packages/badore/contabi_form)[![License](https://camo.githubusercontent.com/b222a86a982a6101dae4305a63e3029379cd563ab2c578503219a7fa4dcd5c94/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f6261646f72652f636f6e746162695f666f726d)](https://packagist.org/packages/badore/contabi_form)

Introduction
------------

[](#introduction)

Laravel easy form manager based on bootstrap

Official Documentation
----------------------

[](#official-documentation)

### Installation

[](#installation)

The scaffolding is located in the `badore/contabi_form` Composer package, which may be installed using Composer:

```
composer require badore/contabi_form
```

Once the `badore/contabi_form` package has been installed, you may install the frontend scaffolding using the `contabiform` Artisan command:

```
// Generate basic scaffolding...
php artisan contabiform:zacca
```

### Basic Usage

[](#basic-usage)

Controller

```
use Badore\ContabiForm\ContabiForm;

class DoctorController extends Controller
{

	public function create()  }}{

		{{  $form = new ContabiForm('row')  }};

		return view('doctor.create',compact('form'))  }};
	}
```

##### Form View example

[](#form-view-example)

```
{{  $form->open('POST','doctors.store')  }}

{{  $form->input('name', 'required', 3)  }}
{{  $form->input('address', null, 4)  }}
{{  $form->inputData('date', null, 1)  }}
{{  $form->inputMoney('amount', null, 1)  }}
{{  $form->select('city', $cities_array, required , 2)  }}
{{  $form->button('Save', 'success')  }}

{{  $form->close()  }}
```

##### Form row example

[](#form-row-example)

```
{{  $form->row() // start row

{{  $form->input('address', 'required', 3)  }}
{{  $form->inputData('date', null, 1)  }}
{{  $form->inputMoney('amount', null, 1)  }}
{{  $form->select('city', $cities_array, required , 2)  }}

{{  $form->rowclose()  }} // close row
```

Select your form `new ContabiForm('horizontal')``new ContabiForm('inline')``new ContabiForm('row')`

View `{{  $form->open('POST','route')  }}`

### Methods

[](#methods)

##### Start the form in your blade view file

[](#start-the-form-in-your-blade-view-file)

`{{  $form->open('POST','doctors.store')  }}` `{{  $form->open('GET','doctors.store')  }}`

##### Input text

[](#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)

[](#input-date-require-bootstrap-datepicker)

`{{  $form->inputData('data', null, 1)  }}`

##### input money (number)

[](#input-money-number)

`{{  $form->inputMoney('importo', null, 1)  }}` //money es: 125,00

##### input file

[](#input-file)

`{{  $form->file('file', 'required')  }}`

##### input email

[](#input-email)

`{{  $form->email('email', required , 4)  }}`

##### input select

[](#input-select)

`{{  $form->select('titolo', array(), required , 2)  }}`

Params: \['title'\], \[array values\], \['required' -o- 'null'\], \[lenght: es 4\]

##### input

[](#input)

`{{  $form->textarea('testo', required)  }}`

##### Button

[](#button)

`{{  $form->button('Save', 'success')  }}`

Params: \['title'\], \['bootstrap color: success, info, warning, danger, dark, light'\]

##### Form close

[](#form-close)

`{{  $form->close()  }}`

###  Health Score

26

—

LowBetter than 41% of packages

Maintenance33

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity52

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

678d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/5132140?v=4)[Eugene](/maintainers/borev)[@borev](https://github.com/borev)

---

Top Contributors

[![thorvh](https://avatars.githubusercontent.com/u/57983409?v=4)](https://github.com/thorvh "thorvh (60 commits)")

### Embed Badge

![Health badge](/badges/badore-contabi-form/health.svg)

```
[![Health](https://phpackages.com/badges/badore-contabi-form/health.svg)](https://phpackages.com/packages/badore-contabi-form)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
