1$galleries = App\Gallery::inRandomOrder()->get();
2//Or
3DB::table('gallery')->inRandomOrder()->get();
4
1User::all()->random();
2User::all()->random(10); // The amount of items you wish to receive
1Model::select('column')->where('column','value')->inRandomOrder()
2 ->limit(2) // here is yours limit
3 ->get();
4
5------------------ OR --------------------
6
7Model::inRandomOrder()->select('column')->where('column','value')->first();