mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-05 07:20:58 +08:00
18 lines
266 B
PHP
18 lines
266 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Models;
|
||
|
|
|
||
|
|
|
||
|
|
class Thank extends NexusModel
|
||
|
|
{
|
||
|
|
public function user()
|
||
|
|
{
|
||
|
|
return $this->belongsTo(User::class, 'userid');
|
||
|
|
}
|
||
|
|
|
||
|
|
public function torrent()
|
||
|
|
{
|
||
|
|
return $this->belongsTo(Torrent::class. 'torrentid');
|
||
|
|
}
|
||
|
|
}
|