Files
snipe-it/app/models/Depreciation.php
T
2014-08-11 17:13:43 +09:00

17 lines
412 B
PHP
Executable File

<?php
class Depreciation extends Elegant
{
// Declare the rules for the form validation
protected $rules = array(
'name' => 'required|alpha_space|min:3|max:255|unique:depreciations,name,{id}',
'months' => 'required|min:1|max:240|integer',
);
public function has_models()
{
return $this->hasMany('Model', 'depreciation_id')->count();
}
}