*/ protected $fillable = [ 'user_id', 'token', 'login', 'logout', 'ip_address', 'user_agent', ]; /** * Get the file user */ public function user(): BelongsTo { return $this->belongsTo(User::class); } }