PHP code example of afaanbilal / laravel-has-uuid

1. Go to this page and download the library: Download afaanbilal/laravel-has-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/ */

    

afaanbilal / laravel-has-uuid example snippets


$table->string('uuid')->unique();

// In any model:

use AfaanBilal\LaravelHasUUID\HasUUID;
// ...

class Post extends Model
{
    use HasUUID;
    // ...
}