UserVisitor.php 453 B

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