PHPackages                             think.studio/laravel-forms-entries - 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. think.studio/laravel-forms-entries

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

think.studio/laravel-forms-entries
==================================

Package to save forms entries and send notifications.

3.2.0(2y ago)0262MITPHPPHP ^8.1

Since Jun 25Pushed 2y ago1 watchersCompare

[ Source](https://github.com/dev-think-one/laravel-forms-entries)[ Packagist](https://packagist.org/packages/think.studio/laravel-forms-entries)[ Docs](https://github.com/dev-think-one/laravel-forms-entries)[ RSS](/packages/thinkstudio-laravel-forms-entries/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (7)Versions (13)Used By (2)

Laravel Forms Entries
=====================

[](#laravel-forms-entries)

[![Packagist License](https://camo.githubusercontent.com/047d07e1f9db1e805ccda57661fddeae05fdb398fe28bd89d9576e1deb24a064/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f7468696e6b2e73747564696f2f6c61726176656c2d666f726d732d656e74726965733f636f6c6f723d253233346463373166)](https://camo.githubusercontent.com/047d07e1f9db1e805ccda57661fddeae05fdb398fe28bd89d9576e1deb24a064/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f7468696e6b2e73747564696f2f6c61726176656c2d666f726d732d656e74726965733f636f6c6f723d253233346463373166)[![Packagist Version](https://camo.githubusercontent.com/40dc5e161c18f8200195184a2128710f7b682d276be238aac92f4ac9b5745af1/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f7468696e6b2e73747564696f2f6c61726176656c2d666f726d732d656e7472696573)](https://packagist.org/packages/think.studio/laravel-forms-entries)[![Total Downloads](https://camo.githubusercontent.com/f08090eade3cb20736c29d8db69351fb20c9523fc3566f2c544c8a8bd0e0051f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f7468696e6b2e73747564696f2f6c61726176656c2d666f726d732d656e7472696573)](https://packagist.org/packages/think.studio/laravel-forms-entries)[![Build Status](https://camo.githubusercontent.com/cb9a78dfd6c4cc37025ae369e1211c366d90d1f985f73ea635ac4be942bdb3fb/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f6465762d7468696e6b2d6f6e652f6c61726176656c2d666f726d732d656e74726965732f6261646765732f6275696c642e706e673f623d6d61696e)](https://scrutinizer-ci.com/g/dev-think-one/laravel-forms-entries/build-status/main)[![Code Coverage](https://camo.githubusercontent.com/ab69ef736210d55b15a9adef7af80514a86c7c70be5dfa1480c47503736a7719/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f6465762d7468696e6b2d6f6e652f6c61726176656c2d666f726d732d656e74726965732f6261646765732f636f7665726167652e706e673f623d6d61696e)](https://scrutinizer-ci.com/g/dev-think-one/laravel-forms-entries/?branch=main)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/9aa6d8f0d043e86508dfb142e1545456cb16c61763d60b0f9b2f34331a47ef37/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f6465762d7468696e6b2d6f6e652f6c61726176656c2d666f726d732d656e74726965732f6261646765732f7175616c6974792d73636f72652e706e673f623d6d61696e)](https://scrutinizer-ci.com/g/dev-think-one/laravel-forms-entries/?branch=main)

Package to save forms entries (like contact us forms ...) and send notifications

Installation
------------

[](#installation)

Install the package via composer:

```
composer require think.studio/laravel-forms-entries
```

You can publish the assets file with:

```
php artisan vendor:publish --provider="FormEntries\ServiceProvider" --tag="config"
php artisan vendor:publish --provider="FormEntries\ServiceProvider" --tag="lang"
```

To disable default migrations add this code to app service provider:

```
use FormEntries\Forms\Form;
use FormEntries\Forms\FormContent;

\FormEntries\FormEntryManager::ignoreMigrations()

Form::typesMap([
    'form-contact' => ContactUsForm::class,
]);
FormContent::typesMap([
    'contact-us' => ContactUsFormContent::class,
]);

```

You can add default routes to your `web.php`

```
\FormEntries\Facades\FormEntryManager::routes();
```

Usage
-----

[](#usage)

### Use predefined classes

[](#use-predefined-classes)

In case you do not need custom classes with validation.

```
$formEntry = \FormEntries\Forms\UniversalForm::make()
                ->enableStoringData()
                ->enableNotifications()
                ->process($request);
```

### Use custom form and content

[](#use-custom-form-and-content)

```
// /app/Http/FormEntries/FormContent/ContactUsFormContent.php
class ContactUsFormContent extends FormContent
{
    protected array $requestKeysToSave = ['email', 'message'];

    public function validateRequest(Request $request): static
    {
        $request->validate([
            'email'   => ['required', 'email'],
            'message' => ['required', 'min:10', 'max:500'],
        ]);

        return $this;
    }
}
```

```
// /app/Http/FormEntries/Forms/ContactUsForm.php
class ContactUsForm extends Form
{
    protected string $formContentClass = ContactUsFormContent::class;

    public function notify(FormEntry $model): bool
    {
        Notification::route('mail', 'tester@test.admin')
                    ->notify(new ($this->getFormNotificationClass())($model->content));

        return true;
    }
}
```

```

    @csrf

    Other fields
    Submit

```

Credits
-------

[](#credits)

- [![Think Studio](https://camo.githubusercontent.com/8e541bece07d503c85a126b5294865faa00e27371048772f566a0cce8c01fd3a/68747470733a2f2f7961726f736c617777772e6769746875622e696f2f696d616765732f73706f6e736f72732f7061636b616765732f6c6f676f2d7468696e6b2d73747564696f2e706e67)](https://think.studio/)

###  Health Score

29

—

LowBetter than 60% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity67

Established project with proven stability

 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 ~73 days

Recently: every ~129 days

Total

12

Last Release

972d ago

Major Versions

1.0.1 → 2.0.02021-11-26

2.1.0 → 3.0.02022-11-05

PHP version history (3 changes)1.0.0PHP &gt;=7.4

2.0.0PHP &gt;=8.0

3.0.0PHP ^8.1

### Community

Maintainers

![](https://www.gravatar.com/avatar/53f93fa87d58f33d106de6bd5e2946f8a345ebfaee146360746056cb134a15a0?d=identicon)[think.studio](/maintainers/think.studio)

---

Top Contributors

[![yaroslawww](https://avatars.githubusercontent.com/u/23663794?v=4)](https://github.com/yaroslawww "yaroslawww (24 commits)")

---

Tags

Formslaravel-forms-entries

###  Code Quality

TestsPHPUnit

Static AnalysisPsalm

Code StylePHP CS Fixer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/thinkstudio-laravel-forms-entries/health.svg)

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

###  Alternatives

[symfonycasts/dynamic-forms

Add dynamic/dependent fields to Symfony forms

1412.1M10](/packages/symfonycasts-dynamic-forms)[barryvdh/laravel-form-bridge

This packages integrates Symfony Form Component in Laravel.

163354.8k1](/packages/barryvdh-laravel-form-bridge)[unclecheese/display-logic

Allows assignment of conditions for display and hide of specific form fields based on client side behavior.

771.0M101](/packages/unclecheese-display-logic)[lara-zeus/bolt

Zeus Bolt is form builder for your users, with so many use cases

23640.2k2](/packages/lara-zeus-bolt)[contributte/forms-multiplier

Multiplier for nette forms

281.4M3](/packages/contributte-forms-multiplier)[kdyby/forms-replicator

Nette forms container replicator aka addDynamic

32997.7k6](/packages/kdyby-forms-replicator)

PHPackages © 2026

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