Artesaos\Defender\Repositories\Eloquent\AbstractEloquentRepository::getList PHP 메소드

getList() 공개 메소드

public getList ( string | integer $value, string $key = 'id' ) : Illuminate\Database\Eloquent\Collection
$value string | integer
$key string
리턴 Illuminate\Database\Eloquent\Collection
    public function getList($value, $key = 'id')
    {
        return $this->model->pluck($value, $key);
    }