2
0
Fork 0
mirror of https://github.com/ZorgCC/lumen-generators.git synced 2025-08-13 08:59:37 +03:00
lumen-generators/lumen-test/tests/tmp/TestingModel.php
2015-09-24 01:25:55 +01:00

19 lines
312 B
PHP

<?php namespace Tests\Tmp;
use Illuminate\Database\Eloquent\Model;
class TestingModel extends Model {
protected $fillable = [];
protected $dates = [];
public static $rules = [
"name" => "required",
"age" => "integer|min:13",
"email" => "email|unique:users,email_address",
];
// Relationships
}