orderby laravel random code example
Example 1: laravel order by random
$galleries = App\Gallery::inRandomOrder()->get();
//Or
DB::table('gallery')->inRandomOrder()->get();
Example 2: in random order laravel
Model::select('column')->where('column','value')->inRandomOrder()
->limit(2) // here is yours limit
->get();
------------------ OR --------------------
Model::inRandomOrder()->select('column')->where('column','value')->first();