mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-14 12:30:49 +08:00
19 lines
290 B
PHP
19 lines
290 B
PHP
|
|
<?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');
|
||
|
|
}
|
||
|
|
}
|