mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-07-31 05:16:49 -04:00
26 lines
456 B
PHP
26 lines
456 B
PHP
<?php
|
|
|
|
namespace Modules\PixelMe\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
class UserMeta extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = 'pixelme_user_meta';
|
|
|
|
protected $fillable = [
|
|
'user_id',
|
|
'name',
|
|
'value',
|
|
'meta'
|
|
];
|
|
|
|
public function user()
|
|
{
|
|
return $this->belongsTo(User::class);
|
|
}
|
|
}
|