Skip to content
Advertisement

Laravel use append attirbute inside a query in controller or scope

So I have done the following: I have a table called group that has longitude and latitude which is essentially a location of the group. Then I have an append which calculates the distance from the user.

Group Model:

JavaScript

What I want to do now is USE that distance from user in a where clause like below in a scope, which sits in the same model as above.

Scope Inside Group Model:

JavaScript

But the distance_from_user is not available at this point when I use the scope. How can i manage this so that I can use the calculated distance in a query.

Thank you in advance!

Advertisement

Answer

As the comments stated, you cannot use the Query Builder to filter by an accessor. You can however, use the filter() method on a Collection.

JavaScript
JavaScript

The problem is the fact you are querying all the records from the database and building a huge Collection of Models. That can really slow down your application. There is a solution for this problem: LazyCollections. Instead of using ->get(), use ->cursor() to return a LazyCollection instance.

JavaScript

This might feel wrong but it uses little to no memory. A cave-at: It doesn’t work well with eager loading relationships. Normal joins are fine though.

At this point, $groups can be iterated over but it’s not a Collection. If you want to turn it into a “normal” collection, just append ->collect() at the end. You can also do some database filtering before using ->cursor()

JavaScript

More on the subject:

https://josephsilber.com/posts/2020/07/29/lazy-collections-in-laravel https://laravel.com/docs/8.x/eloquent#using-cursors

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement