User::inRandomOrder()->limit(5)->get();
User::all()->random();
User::all()->random(10); // The amount of items you wish to receive
// 5 indicates the number of records
User::inRandomOrder()->limit(5)->get();
// get one random record
User::inRandomOrder()->first();