Files
snipe-it/app/models/Depreciation.php
T
2014-12-24 22:34:16 +00:00

16 lines
387 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();
}
}