uawdijnntqw1x1x1
IP : 216.73.216.93
Hostname : panel.codeskitter.com
Kernel : Linux panel.codeskitter.com 6.8.0-100-generic #100-Ubuntu SMP PREEMPT_DYNAMIC Tue Jan 13 16:40:06 UTC 2026 x86_64
Disable Function : apache_child_terminate, apache_note, apache_setenv, define_syslog_variables, dl, link, opcache_get_status, openlog, pcntl_exec, pcntl_fork, pcntl_setpriority, popen, posix_getpwuid, posix_kill, posix_mkfifo, posix_setpgid, posix_setsid, posix_setuid
OS : Linux
PATH:
/
home
/
users
/
unlimited
/
www
/
talentorbit.codeskitter.site
/
app
/
.
/
ProfileSkill.php
/
/
<?php namespace App; use Illuminate\Database\Eloquent\Model; class ProfileSkill extends Model { protected $table = 'profile_skills'; public $timestamps = true; protected $guarded = ['id']; //protected $dateFormat = 'U'; protected $dates = ['created_at', 'updated_at']; public function user() { return $this->belongsTo('App\User', 'user_id', 'id'); } public function getUser($field = '') { if (null !== $user = $this->user()->first()) { if (empty($field)) return $user; else return $user->$field; } else { return ''; } } public function jobSkill() { return $this->belongsTo('App\JobSkill', 'job_skill_id', 'job_skill_id'); } public function getJobSkill($field = '') { $jobSkill = $this->jobSkill()->lang()->first(); if (null === $jobSkill) { $jobSkill = $this->jobSkill()->first(); } if (null !== $jobSkill) { if (empty($field)) return $jobSkill; else return $jobSkill->$field; } else { return ''; } } public function jobExperience() { return $this->belongsTo('App\JobExperience', 'job_experience_id', 'job_experience_id'); } public function getJobExperience($field = '') { $jobExperience = $this->jobExperience()->lang()->first(); if (null === $jobExperience) { $jobExperience = $this->jobExperience()->first(); } if (null !== $jobExperience) { if (empty($field)) return $jobExperience; else return $jobExperience->$field; } else { return ''; } } }
/home/users/unlimited/www/talentorbit.codeskitter.site/app/./ProfileSkill.php