Answers for "random laravel"

PHP
8

laravel Str::random

use Illuminate\Support\Str;

$random = Str::random(40);
Posted by: Guest on June-06-2020
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

Browse Popular Code Answers by Language