Files
snipe-it/app/models/Manufacturer.php
T
2014-12-24 22:34:16 +00:00

18 lines
445 B
PHP
Executable File

<?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();
}
}