Files
snipe-it/app/models/Manufacturer.php
T
Cordeos Team 87c2a4c9c0 initial commit
2014-08-10 16:42:40 +09:00

19 lines
446 B
PHP

<?php
class Manufacturer extends Elegant
{
protected $softDelete = true;
protected $table = 'manufacturers';
// Declare the rules for the form validation
protected $rules = array(
'name' => 'required|alpha_space|min:2|max:255|unique:manufacturers,name,{id}',
'user_id' => 'integer',
);
public function has_models()
{
return $this->hasMany('Model', 'manufacturer_id')->count();
}
}