namespace auth() helper laravel code example
Example 1: laravel str::random
use Illuminate\Support\Str;
$random = Str::random(40);
Example 2: laravel auth
//laravel 8.x
//for bootstrap scafolding
php artisan ui bootstrap --auth
use Illuminate\Support\Str;
$random = Str::random(40);
//laravel 8.x
//for bootstrap scafolding
php artisan ui bootstrap --auth