PHP code example of anourvalar / eloquent-validation
1. Go to this page and download the library: Download anourvalar/eloquent-validation library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
anourvalar / eloquent-validation example snippets
\App\UserPhone
::fields('user_id', 'phone_number') // fillable columns (mass assignment)
->fill(\Request::input())
->validate() // will throw exception if it fails
->save();
}
\App\UserPhone
::findOrFail(\Request::input('id'))
->fields(['user_id', 'phone_number']) // also might be an array
->fill(\Request::input())
->validate()
->save();
}
bash
php artisan make:model-validation UserPhone
namespace App;
use Illuminate\Database\Eloquent\Model;
class UserPhone extends Model
{
use \AnourValar\EloquentValidation\ModelTrait;
/**
* Trim columns
*
* @var array
*/
protected $trim = [
'phone_number', // trim mutator
];
/**
* '',[] => null convertation
*
* @var array
*/
protected $nullable = [
// empty string to null (convertation) mutator
];
/**
* Calculated columns
*
* @var array
*/
protected $computed = [
// columns which could be changed only in listeners (observers)
];
/**
* Immutable columns
*
* @var array
*/
protected $unchangeable = [
'user_id', // unchangeable columns after creation
];
/**
* Unique columns sets
*
* @var array
*/
protected $unique = [
// unique sets of columns
];
/**
* Get the validation rules
*
* @return array
*/
public function saveRules()
{
return [
'user_id' => ['
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.