Files
snipe-it/app/models/Depreciation.php
T
2013-11-26 14:54:46 -05:00

17 lines
315 B
PHP

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