Kára S.

Results 2 issues of Kára S.

After installing the database add-on, and the `illuminate/pagination` package, when doing something like : ```php DB::connection('sqlite')->table('users')->orderBy('id')->paginate(perPage: 15, page: 1); ``` The `paginate()` call results in an exception, as we can...

When using the Eloquent query builder pagination methods, like this : ```php DB::table('users')->paginate(perPage: 15, page: 1); ``` Laravel tries to acces the `request` binding — and by doing so throws...