Skip to main content

Posts

Showing posts with the label get records using location by dynamic radius from database.

get records using location by dynamic radius from database.

$postads = PostAds::with('userInfo')                             ->has('userInfo')                             ->where('user_id','!=',Auth::id())                             ->whereRaw('(ST_Distance_Sphere(POINT('.$lng.','.$lat.'), POINT(longitude,latitude))/1000) <= radius')                             ->paginate(10);