6bf2a2875f
You can find screenshots and other files related to the feature on Dropbox here: https://www.dropbox.com/sh/wugnzqepwgzwlnh/AAAwNWA5hIKrP0y2VTu-LMHHa?dl=0 https://github.com/snipe/snipe-it/issues/23
15 lines
391 B
PHP
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');
|
|
}
|
|
}
|