2022-03-30 15:37:11 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Reward extends NexusModel
|
|
|
|
|
{
|
|
|
|
|
protected $table = 'magic';
|
|
|
|
|
|
|
|
|
|
protected $fillable = ['torrentid', 'userid', 'value', ];
|
|
|
|
|
|
|
|
|
|
public $timestamps = true;
|
|
|
|
|
|
|
|
|
|
public function user()
|
|
|
|
|
{
|
|
|
|
|
return $this->belongsTo(User::class, 'userid');
|
|
|
|
|
}
|
|
|
|
|
}
|