Is the Laravel str_random() function random enough so that I can use it for IDs?
For example:
str_random(32);
This produces a rando
you can use this
use Illuminate\Support\Str; $random = Str::random(40);