Files
snipe-it/app/models/Company.php
T
2015-11-07 15:22:10 +03:00

15 lines
391 B
PHP

<?php
final class Company extends Elegant
{
protected $table = 'companies';
// Declare the rules for the form validation
protected $rules = ['name' => 'required|alpha_space|min:2|max:255|unique:companies,name,{id}'];
public static function getSelectList()
{
return array('' => '') + DB::table('companies')->orderBy('name', 'ASC')->lists('name', 'id');
}
}