clarion-app / eloquent-multichain-bridge
Replicates models onto blockchain
Installs: 49
Dependents: 9
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/clarion-app/eloquent-multichain-bridge
Requires
- clarion-app/multichain: dev-main
This package is auto-updated.
Last update: 2025-10-06 10:07:21 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.