ufutx.dma/app/Models/PartnerWallet.php

17 lines
260 B
PHP
Raw Permalink Normal View History

2026-03-04 14:42:40 +08:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
class PartnerWallet extends BaseModel
{
use HasFactory;
public $guarded = [];
public function user()
{
return $this->belongsTo(User::class);
}
}