aarondfrancis / fast-paginate

A fast implementation of offset/limit pagination for Laravel.
MIT License
1.21k stars 56 forks source link

Doesn't work under the DB facade #40

Closed softwaredeveloperca closed 1 year ago

softwaredeveloperca commented 1 year ago

Illuminate\Support\Facades\DB

DB::table('table')->paginate() works DB::table('table')->Fastpaginate() does not works

aarondfrancis commented 1 year ago

That's correct, I need to know what the primary keys for the table are and I can only get that via the model, so it only works on the Eloquent Builder. Let me know if you have any other questions!