| 123456789101112131415161718192021 |
- <?php
- /**
- * Created by PhpStorm.
- * User: ring
- * Date: 2019/7/10
- * Time: 下午5:44
- */
- namespace App\Models;
- use Illuminate\Database\Eloquent\Model;
- class UserVisitor extends Model
- {
- protected $table = 'love_user_visitor';
- protected $fillable = [
- 'uid', 'to_uid'
- ];
- public function user(){
- return $this->hasOne(Users::class,'id','uid')->select('id','name', 'lid', 'avatar','sex','age','vip','trump','opt');
- }
- }
|