PHPackages                             kusikusi/forms - 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. kusikusi/forms

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

kusikusi/forms
==============

Form management form Kusikusi.

v8.0.9(4y ago)031MITPHP

Since Oct 25Pushed 3y agoCompare

[ Source](https://github.com/cuatromedios/kusikusi-forms)[ Packagist](https://packagist.org/packages/kusikusi/forms)[ RSS](/packages/kusikusi-forms/feed)WikiDiscussions master Synced 1w ago

READMEChangelog (3)Dependencies (2)Versions (4)Used By (0)

Kusikusi Forms Controllers
==========================

[](#kusikusi-forms-controllers)

> This is a read-only repository, splitted from the monorepo at [github.com/cuatromedios/kusikusi-monorepo](https://github.com/cuatromedios/kusikusi-monorepo)

> For the Laravel starter kit visit [github.com/cuatromedios/kusikusi](https://github.com/cuatromedios/kusikusi)

[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)![Travis](https://camo.githubusercontent.com/8fe58f6c0d14f0d5fd5a83c309fd6bb1ab08769aaf1fc8683d697db449c89435/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f6b7573696b7573692f776562736974652e7376673f7374796c653d666c61742d737175617265)[![Total Downloads](https://camo.githubusercontent.com/9a75eccebf431f6595acf4447956ad11acf33da3a3f41683b9ad2dab94c493cb/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6b7573696b7573692f776562736974652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/kusikusi/website)

Install
-------

[](#install)

This package complements kusikusi/models and kusikusi/website packages, that should be required first.

```
composer require kusikusi/forms

```

Usage
-----

[](#usage)

### Publish the assets

[](#publish-the-assets)

- ##### Publish all the assets ...

    [](#publish-all-the-assets-)

    ```
    php artisan vendor:publish --provider="Kusikusi\FormServiceProvider"
    ```
- ##### Or Publish individual Assets

    [](#or-publish-individual-assets)

    Configuration

    ```
    php artisan vendor:publish --provider="Kusikusi\FormServiceProvider" --tag="config"
    ```

### Migrations

[](#migrations)

```
php artisan migrate
```

### Receiving forms

[](#receiving-forms)

- Any form you want to be processed by Kusikusi Forms, set the action to `/form` and method to `post`
- Include the Laravel [CSRF token](https://laravel.com/docs/csrf)
- Include a hidden field named `entity_id` with the entity id value of the current page ```

        Enviar

    ```
- The entity referenced should have in the `properties` field, a property named `form` with specific params:
    - `fields` an object with the keys as the field names and values as the [validation string](https://laravel.com/docs/validation) for that field, if a field is not described here will be ignored.
    - `mail_to` an email address if you want to send the entry to an email address. You should have mail values configured in your Laravel project.

    ```
    {
      "form": {
        "mail_to": "contact@example.com",
        "fields": {
          "name": {
            "validation": "required|max:50"
          },
          "email": {
            "validation": "required|email"
          }
        }
      }
    }
    ```

### Routes

[](#routes)

This Kusikusi Forms Package, has a routes specific for form entries management

Receiving form entries

```
POST /form
```

API endpoints to manage the entries.

```
GET /formentries/
GET /formentries/{formentry_id}
PATCH GET /formentries/{formentry_id}
DELETE GET /formentries/{formentry_id}
```

Testing
-------

[](#testing)

Run the tests with:

```
vendor/bin/phpunit
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Credits
-------

[](#credits)

- [Cuatromedios](https://github.com/kusikusi)
- [All Contributors](https://github.com/kusikusi/website/contributors)

Security
--------

[](#security)

If you discover any security-related issues, please email dev@cuatromedios instead of using the issue tracker.

License
-------

[](#license)

The MIT License (MIT). Please see [License File](/LICENSE.md) for more information.

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community6

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

Every ~0 days

Total

3

Last Release

1666d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/8fd60c344577654ba6fe7dfe3de6938118f9c5b002de44cbe21afec810a790ce?d=identicon)[cuatromedios](/maintainers/cuatromedios)

---

Top Contributors

[![ramsesmoreno](https://avatars.githubusercontent.com/u/30059695?v=4)](https://github.com/ramsesmoreno "ramsesmoreno (6 commits)")

---

Tags

laravel

### Embed Badge

![Health badge](/badges/kusikusi-forms/health.svg)

```
[![Health](https://phpackages.com/badges/kusikusi-forms/health.svg)](https://phpackages.com/packages/kusikusi-forms)
```

###  Alternatives

[barryvdh/laravel-ide-helper

Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.

14.9k123.0M687](/packages/barryvdh-laravel-ide-helper)[interaction-design-foundation/laravel-geoip

Support for multiple Geographical Location services.

17221.0k3](/packages/interaction-design-foundation-laravel-geoip)[nedwors/navigator

A Laravel package to ease defining navigation menus

433.1k](/packages/nedwors-navigator)[xefi/faker-php-laravel

Faker php integration with laravel

1915.1k](/packages/xefi-faker-php-laravel)[dcblogdev/laravel-junie

Install pre-configured guides for Jetbrains Junie

392.5k](/packages/dcblogdev-laravel-junie)

PHPackages © 2026

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