From 11447c13da7f5fcfef40b1db200c46e359ac9a64 Mon Sep 17 00:00:00 2001 From: Neil Alexander Date: Fri, 1 Jun 2018 12:13:32 +0100 Subject: [PATCH] Use inRandomOrder instead of orderByRaw in Discover page --- app/Http/Controllers/DiscoverController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/DiscoverController.php b/app/Http/Controllers/DiscoverController.php index a8459b370..d7c70e30a 100644 --- a/app/Http/Controllers/DiscoverController.php +++ b/app/Http/Controllers/DiscoverController.php @@ -16,7 +16,7 @@ class DiscoverController extends Controller public function home() { $following = Follower::whereProfileId(Auth::user()->profile->id)->pluck('following_id'); - $people = Profile::whereNotIn('id', $following)->orderByRaw('rand()')->take(3)->get(); + $people = Profile::inRandomOrder()->whereNotIn('id', $following)->take(3)->get(); $posts = Status::whereHas('media')->whereNotIn('profile_id', $following)->orderBy('created_at', 'desc')->take('21')->get(); return view('discover.home', compact('people', 'posts')); }