Rinvex\Repository\Repositories\BaseRepository::orderBy PHP Method

orderBy() public method

Add an "order by" clause to the query.
public orderBy ( string $attribute, string $direction = 'asc' )
$attribute string
$direction string
    public function orderBy($attribute, $direction = 'asc')
    {
        $this->orderBy = [$attribute, $direction];
        return $this;
    }