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

16 lines
286 B
PHP

<?php
class Manufacturer extends Elegant {
protected $softDelete = true;
// 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();
}
}