Files
nexusphp/app/Models/Post.php

13 lines
160 B
PHP
Raw Normal View History

2021-05-15 19:29:44 +08:00
<?php
namespace App\Models;
class Post extends NexusModel
{
public function user()
{
return $this->belongsTo(User::class, 'userid');
}
2021-05-15 19:29:44 +08:00
}