Owl\Repositories\Fluent\ItemFtsRepository::getById PHP Method

getById() public method

get a itemFts by item_id.
public getById ( integer $item_id ) : void
$item_id integer
return void
    public function getById($item_id)
    {
        return \DB::table($this->getTableName())->where($this->getTableName() . '.item_id', $item_id)->first();
    }