Answers for "how to use str_random in laravel"

PHP
8

laravel Str::random

use Illuminate\Support\Str;

$random = Str::random(40);
Posted by: Guest on June-06-2020
0

random string value laravel

//select random value from array
use Illuminate\Support\Arr;

$array = [1, 2, 3, 4, 5];

$random = Arr::random($array);


//generate random string of specific length
use Illuminate\Support\Str;

$random = Str::random(40);
Posted by: Guest on September-16-2021

Browse Popular Code Answers by Language