Controllers\Api\Statements::where PHP Method

where() public method

Filters statements using the where method.
public where ( ) : [Statement]
return [Statement]
    public function where()
    {
        $limit = \LockerRequest::getParam('limit', 100);
        $filters = $this->getParam('filters');
        return \Response::json($this->query->where($this->getOptions()['lrs_id'], $filters)->paginate($limit));
    }