uuid laravel 7 code example
Example 1: uuid in laravel
use Illuminate\Support\Str;
$uuid = Str::uuid()->toString();
Example 2: laravel helper
use Illuminate\Support\Str;
$length = Str::length('Laravel');
// 7
use Illuminate\Support\Str;
$uuid = Str::uuid()->toString();
use Illuminate\Support\Str;
$length = Str::length('Laravel');
// 7