PHP code example of alzpk / larauuid

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

    

alzpk / larauuid example snippets


namespace App\Models;

use Alzpk\Larauuid\Larauuid;
use Illuminate\Database\Eloquent\Model;

class Post extends Model
{
    use Larauuid;
}

public function up()
    {
        Schema::create('posts', function (Blueprint $table) {
            $table->uuid('id')->primary();
            $table->string('title');
            $table->text('message');
            $table->timestamps();
        });
    }