This repository was archived by the owner on Jul 16, 2023. It is now read-only.

Description
When trying to call an Eloquent method I get a call to undefined method error for example:
class Blog extends Ardent {
}
then
Blog::orderBy('date', 'DESC')->paginate(15);
or
Blog::get();
orderBy is not defined, this is the same for all query methods I've tried.
Is it because Ardent is extending Model, however when we create models and want to make use of the Eloquent magic we extend Eloquent instead?