Files
einundzwanzig-verein/app/Models/PaymentEvent.php
HolgerHatGarKeineNode 34f8d949d5 Add NIP-05 handle management: Introduce migration, API route, and Livewire updates to support NIP-05 handle verification.
 Enhance Nostr fetcher: Refactor profile data merging logic for improved efficiency and accuracy.
🛠
2026-01-20 13:56:50 +01:00

19 lines
337 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class PaymentEvent extends Model
{
use HasFactory;
protected $guarded = [];
public function pleb()
{
return $this->belongsTo(EinundzwanzigPleb::class, 'einundzwanzig_pleb_id');
}
}