PHP code example of kfoobar / laravel-uuid
1. Go to this page and download the library: Download kfoobar/laravel-uuid library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
kfoobar / laravel-uuid example snippets
use Illuminate\Database\Eloquent\Model;
use KFoobar\Uuid\Traits\HasUuid;
class Post extends Model
{
use HasUuid;
}