| 1234567891011121314151617 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Model;
- class LiveStatistics extends Model
- {
- protected $table = 'love_live_statistics';
- protected $fillable = [
- 'lid','uid', 'start_time','end_time'
- ];
- public function user(){
- return $this->hasOne(Users::class,'id','uid')->select('id','name', 'lid', 'avatar','sex','age','vip','trump','opt','city');
- }
- }
|