Kyslik / column-sortable

Package for handling column sorting in Laravel 5/6/7/8
MIT License
644 stars 105 forks source link

Call to undefined method Illuminate\Database\Query\Builder::sortable() #128

Closed jp-jsr-group closed 5 years ago

jp-jsr-group commented 5 years ago

I am getting an error when I am using the $query = DB::table('users AS u')->leftJoin

But when I use $query = User::leftJoin

Is this just me or it is really a bug when using DB::table()?

Kyslik commented 5 years ago

You can't use DB::table(); package works only with Eloquent.