clarion-app/eloquent-multichain-bridge

Replicates models onto blockchain

dev-main 2024-08-06 07:42 UTC

This package is auto-updated.

Last update: 2025-03-06 09:01:12 UTC


README

Connect Eloquent ORM to MultiChain

  • Install
composer require clarion-app/eloquent-multichain-bridge
  • Make sure your migration includes: a UUID for the primary key, timestamps, and softDeletes
        Schema::create('messages', function (Blueprint $table) {
            $table->uuid('id')->primary();
            $table->timestamps();
            $table->softDeletes();
            $table->string("from");
            $table->string("to");
            $table->string("body");
        });
  • Add trait to your model
use ClarionApp\EloquentMultiChainBridge\EloquentMultiChainBridge;

class Message extends Model
{
    use HasFactory, EloquentMultiChainBridge;
}

Now when a Message is created, updated, or deleted, a copy will be replicated on the blockchain.