jaspaul / eloquent-model-validation
A simple package that provides a venue for model validation in Laravel.
Installs: 20 369
Dependents: 0
Suggesters: 0
Security: 0
Stars: 9
Watchers: 2
Forks: 2
Open Issues: 0
Requires
- php: >=7.2
- illuminate/database: ^6.0
- illuminate/support: ^6.0
- illuminate/validation: ^6.0
Requires (Dev)
- mockery/mockery: ^0.9.9
- phpunit/phpunit: ^6.0 || ^7.0 ||^8.0
- satooshi/php-coveralls: ^1.0
- squizlabs/php_codesniffer: ^2.8
README
This package is an experiment in introducing the concept of active record validations to Laravel.
Install
Via Composer
$ composer require jaspaul/eloquent-model-validation
Requirements
The following versions of PHP are supported by this version.
- PHP 7.2
- PHP 7.3
- PHP 7.4
Configuration
Option 1
Extend the validation model instead of Eloquent\Model.
<?php use Jaspaul\EloquentModelValidation\Model; class Foo extends Model { ... }
Option 2
Override Eloquent
in config/app.php
'Eloquent' => Jaspaul\EloquentModelValidation\Model::class,
Now you can just do the following:
<?php class Foo extends Eloquent { ... }
Option 3
Update your classes to implement Validatable using the Validates trait provided. You can use this option if extending the provided model isn't an option in your project.
<?php namespace Jaspaul\EloquentModelValidation; use Illuminate\Database\Eloquent\Model as Base; use Jaspaul\EloquentModelValidation\Traits\Validates; use Jaspaul\EloquentModelValidation\Contracts\Validatable; abstract class Model extends Base implements Validatable { use Validates; /** * Returns the data to validate. * * @return array */ protected function getData() : array { return $this->getAttributes(); } }
Usage
<?php use Jaspaul\EloquentModelValidation\Model; class User extends Model { protected function getRules() : array { return [ 'name' => 'required|max:255', 'email' => 'required|email|max:255|unique:users', 'password' => 'required|min:6|confirmed', ]; } }
Now if you were storing your model:
public function store() { $user = new User(Input::all()); try { $user->save(); return $user; } catch (\Illuminate\Validation\ValidationException $exception) { // You can handle exception, access the errors $exception->getErrors(), // or let it bubble up and let the Laravel Exception handler deal with it. throw $exception; } }