mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-07 16:40:56 +08:00
13 lines
160 B
PHP
13 lines
160 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
class Post extends NexusModel
|
|
{
|
|
public function user()
|
|
{
|
|
return $this->belongsTo(User::class, 'userid');
|
|
}
|
|
}
|