PHPackages                             hlacos/model\_validation - 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. [Validation &amp; Sanitization](/categories/validation)
4. /
5. hlacos/model\_validation

ActiveLibrary[Validation &amp; Sanitization](/categories/validation)

hlacos/model\_validation
========================

011PHP

Since Jun 2Pushed 11y ago1 watchersCompare

[ Source](https://github.com/Hlacos/modelValidation)[ Packagist](https://packagist.org/packages/hlacos/model_validation)[ RSS](/packages/hlacos-model-validation/feed)WikiDiscussions master Synced today

READMEChangelogDependenciesVersions (1)Used By (0)

ModelValidation bundle
======================

[](#modelvalidation-bundle)

Laravel 5 bundle for validate in models.

It's under development, not recommended for production use!

Installation
============

[](#installation)

1. add bundle to composer: "hlacos/modelValidation": "dev-master"
2. composer install / update
3. add service provider to the providers list: 'Hlacos\\ModelValidation\\ModelValidationServiceProvider'

Usage
=====

[](#usage)

In the rules array use the laravel validator formats.

```
class CustomModel extends Eloquent {
    use ModelValidationTrait;

    public $rules = array(
        'attribute' => 'required',
    );
}

$customModel = new CustomModel();
$customModel->setAttributes($attributes);

if ($customModel->isValid()) {
    $customModel->save();
} else {
    return $customModel->errors;
}
```

###  Health Score

19

—

LowBetter than 9% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community4

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/5fc02ed73047a5c4baec884c0a87d6f9f50c3cfa9d1d4c8b2718034d75c7e6a4?d=identicon)[Hlacos](/maintainers/Hlacos)

### Embed Badge

![Health badge](/badges/hlacos-model-validation/health.svg)

```
[![Health](https://phpackages.com/badges/hlacos-model-validation/health.svg)](https://phpackages.com/packages/hlacos-model-validation)
```

###  Alternatives

[marcosh/php-validation-dsl

A DSL for validating data in a functional fashion

483.9k](/packages/marcosh-php-validation-dsl)

PHPackages © 2026

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