17 lines
412 B
PHP
Executable File
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();
|
|
}
|
|
|
|
}
|