@@ -32,13 +32,13 @@ |
||
32 | 32 | public $translatedAttributes = ['value']; |
33 | 33 | protected $fillable = []; |
34 | 34 | |
35 | - public function experience_level_translations() //phpcs:ignore |
|
35 | + public function experience_level_translations () //phpcs:ignore |
|
36 | 36 | { |
37 | - return $this->hasMany(\App\Models\Lookup\ExperienceLevelTranslation::class); |
|
37 | + return $this->hasMany (\App\Models\Lookup\ExperienceLevelTranslation::class); |
|
38 | 38 | } |
39 | 39 | |
40 | - public function skill_declarations() //phpcs:ignore |
|
40 | + public function skill_declarations () //phpcs:ignore |
|
41 | 41 | { |
42 | - return $this->hasMany(\App\Models\SkillDeclaration::class); |
|
42 | + return $this->hasMany (\App\Models\SkillDeclaration::class); |
|
43 | 43 | } |
44 | 44 | } |
@@ -28,8 +28,8 @@ |
||
28 | 28 | ]; |
29 | 29 | protected $fillable = []; |
30 | 30 | |
31 | - public function language_requirement() { |
|
32 | - return $this->belongsTo(\App\Models\Lookup\LanguageRequirement::class); |
|
31 | + public function language_requirement () { |
|
32 | + return $this->belongsTo (\App\Models\Lookup\LanguageRequirement::class); |
|
33 | 33 | } |
34 | 34 | |
35 | 35 | } |
@@ -19,8 +19,8 @@ |
||
19 | 19 | |
20 | 20 | protected $fillable = []; |
21 | 21 | |
22 | - public function job_applications() { |
|
23 | - return $this->hasMany(\App\Models\JobApplication::class); |
|
22 | + public function job_applications () { |
|
23 | + return $this->hasMany (\App\Models\JobApplication::class); |
|
24 | 24 | } |
25 | 25 | |
26 | 26 | } |
@@ -28,8 +28,8 @@ |
||
28 | 28 | ]; |
29 | 29 | protected $fillable = []; |
30 | 30 | |
31 | - public function job_term() { |
|
32 | - return $this->belongsTo(\App\Models\Lookup\JobTerm::class); |
|
31 | + public function job_term () { |
|
32 | + return $this->belongsTo (\App\Models\Lookup\JobTerm::class); |
|
33 | 33 | } |
34 | 34 | |
35 | 35 | } |
@@ -25,8 +25,8 @@ |
||
25 | 25 | |
26 | 26 | protected $fillable = []; |
27 | 27 | |
28 | - public function criteria_type() { |
|
29 | - return $this->belongsTo(\App\Models\CriteriaType::class); |
|
28 | + public function criteria_type () { |
|
29 | + return $this->belongsTo (\App\Models\CriteriaType::class); |
|
30 | 30 | } |
31 | 31 | |
32 | 32 | } |
@@ -28,8 +28,8 @@ |
||
28 | 28 | ]; |
29 | 29 | protected $fillable = []; |
30 | 30 | |
31 | - public function skill_level() { |
|
32 | - return $this->belongsTo(\App\Models\Lookup\SkillLevel::class); |
|
31 | + public function skill_level () { |
|
32 | + return $this->belongsTo (\App\Models\Lookup\SkillLevel::class); |
|
33 | 33 | } |
34 | 34 | |
35 | 35 | } |
@@ -31,13 +31,13 @@ |
||
31 | 31 | public $translatedAttributes = ['value']; |
32 | 32 | protected $fillable = []; |
33 | 33 | |
34 | - public function job_posters() //phpcs:ignore |
|
34 | + public function job_posters () //phpcs:ignore |
|
35 | 35 | { |
36 | - return $this->hasMany(\App\Models\JobPoster::class); |
|
36 | + return $this->hasMany (\App\Models\JobPoster::class); |
|
37 | 37 | } |
38 | 38 | |
39 | - public function job_term_translations() //phpcs:ignore |
|
39 | + public function job_term_translations () //phpcs:ignore |
|
40 | 40 | { |
41 | - return $this->hasMany(\App\Models\Lookup\JobTermTranslation::class); |
|
41 | + return $this->hasMany (\App\Models\Lookup\JobTermTranslation::class); |
|
42 | 42 | } |
43 | 43 | } |
@@ -28,8 +28,8 @@ |
||
28 | 28 | ]; |
29 | 29 | protected $fillable = []; |
30 | 30 | |
31 | - public function citizenship_declaration() { |
|
32 | - return $this->belongsTo(\App\Models\Lookup\CitizenshipDeclaration::class); |
|
31 | + public function citizenship_declaration () { |
|
32 | + return $this->belongsTo (\App\Models\Lookup\CitizenshipDeclaration::class); |
|
33 | 33 | } |
34 | 34 | |
35 | 35 | } |
@@ -29,12 +29,12 @@ |
||
29 | 29 | */ |
30 | 30 | protected $appends = ['status']; |
31 | 31 | |
32 | - public function skill_declarations() { |
|
33 | - return $this->hasMany(\App\Models\SkillDeclaration::class); |
|
32 | + public function skill_declarations () { |
|
33 | + return $this->hasMany (\App\Models\SkillDeclaration::class); |
|
34 | 34 | } |
35 | 35 | |
36 | 36 | // Accessors |
37 | - public function getStatusAttribute() { |
|
38 | - return Lang::get('common/skills.status')[$this->name]; |
|
37 | + public function getStatusAttribute () { |
|
38 | + return Lang::get ('common/skills.status')[$this->name]; |
|
39 | 39 | } |
40 | 40 | } |