Files
snipe-it/app/models/Manufacturer.php
T
2013-11-20 07:33:41 -05:00

15 lines
255 B
PHP

<?php
class Manufacturer extends Elegant {
// Declare the rules for the form validation
protected $rules = array(
'name' => 'required|min:2',
);
public function has_models()
{
return $this->hasMany('Model', 'manufacturer_id')->count();
}
}