Answers for "laravel fetch all record randomly from database"

PHP
5

laravel get random row

User::all()->random();
User::all()->random(10); // The amount of items you wish to receive
Posted by: Guest on April-22-2020
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();
Posted by: Guest on October-17-2020

Code answers related to "laravel fetch all record randomly from database"

Browse Popular Code Answers by Language