Files
snipe-it/app/models/Location.php
T
2013-11-20 07:26:39 -05:00

21 lines
400 B
PHP

<?php
class Location extends Elegant {
protected $softDelete = true;
protected $table = 'locations';
protected $rules = array(
'name' => 'required|min:3',
'city' => 'required|min:3',
'state' => 'required|alpha|min:2|max:2',
'country' => 'required|alpha|min:2|max:2',
);
public function has_users()
{
return $this->hasMany('User', 'location_id')->count();
}
}