@@ -21,14 +21,14 @@ |
||
21 | 21 | * |
22 | 22 | * @property \App\Models\Lookup\ApplicationStatus $application_status |
23 | 23 | */ |
24 | -class ApplicationStatusTranslation extends BaseModel { |
|
24 | +class ApplicationStatusTranslation extends BaseModel{ |
|
25 | 25 | |
26 | 26 | protected $casts = [ |
27 | 27 | 'application_status_id' => 'int' |
28 | 28 | ]; |
29 | 29 | protected $fillable = []; |
30 | 30 | |
31 | - public function application_status() { |
|
31 | + public function application_status(){ |
|
32 | 32 | return $this->belongsTo(\App\Models\Lookup\ApplicationStatus::class); |
33 | 33 | } |
34 | 34 |
@@ -21,14 +21,14 @@ |
||
21 | 21 | * |
22 | 22 | * @property \App\Models\Lookup\Province $province |
23 | 23 | */ |
24 | -class ProvinceTranslation extends BaseModel { |
|
24 | +class ProvinceTranslation extends BaseModel{ |
|
25 | 25 | |
26 | 26 | protected $casts = [ |
27 | 27 | 'province_id' => 'int' |
28 | 28 | ]; |
29 | 29 | protected $fillable = []; |
30 | 30 | |
31 | - public function province() { |
|
31 | + public function province(){ |
|
32 | 32 | return $this->belongsTo(\App\Models\Lookup\Province::class); |
33 | 33 | } |
34 | 34 |
@@ -21,14 +21,14 @@ |
||
21 | 21 | * |
22 | 22 | * @property \App\Models\Lookup\ExperienceLevel $experience_level |
23 | 23 | */ |
24 | -class ExperienceLevelTranslation extends BaseModel { |
|
24 | +class ExperienceLevelTranslation extends BaseModel{ |
|
25 | 25 | |
26 | 26 | protected $casts = [ |
27 | 27 | 'experience_level_id' => 'int' |
28 | 28 | ]; |
29 | 29 | protected $fillable = []; |
30 | 30 | |
31 | - public function experience_level() { |
|
31 | + public function experience_level(){ |
|
32 | 32 | return $this->belongsTo(\App\Models\Lookup\ExperienceLevel::class); |
33 | 33 | } |
34 | 34 |
@@ -21,14 +21,14 @@ |
||
21 | 21 | * |
22 | 22 | * @property \App\Models\Lookup\JobTerm $job_term |
23 | 23 | */ |
24 | -class JobTermTranslation extends BaseModel { |
|
24 | +class JobTermTranslation extends BaseModel{ |
|
25 | 25 | |
26 | 26 | protected $casts = [ |
27 | 27 | 'job_term_id' => 'int' |
28 | 28 | ]; |
29 | 29 | protected $fillable = []; |
30 | 30 | |
31 | - public function job_term() { |
|
31 | + public function job_term(){ |
|
32 | 32 | return $this->belongsTo(\App\Models\Lookup\JobTerm::class); |
33 | 33 | } |
34 | 34 |
@@ -21,11 +21,11 @@ |
||
21 | 21 | * |
22 | 22 | * @property \App\Models\CriteriaType $criteria_type |
23 | 23 | */ |
24 | -class CriteriaTypeTranslation extends BaseModel { |
|
24 | +class CriteriaTypeTranslation extends BaseModel{ |
|
25 | 25 | |
26 | 26 | protected $fillable = []; |
27 | 27 | |
28 | - public function criteria_type() { |
|
28 | + public function criteria_type(){ |
|
29 | 29 | return $this->belongsTo(\App\Models\CriteriaType::class); |
30 | 30 | } |
31 | 31 |
@@ -21,14 +21,14 @@ |
||
21 | 21 | * |
22 | 22 | * @property \App\Models\Lookup\Relationship $relationship |
23 | 23 | */ |
24 | -class RelationshipTranslation extends BaseModel { |
|
24 | +class RelationshipTranslation extends BaseModel{ |
|
25 | 25 | |
26 | 26 | protected $casts = [ |
27 | 27 | 'relationship_id' => 'int' |
28 | 28 | ]; |
29 | 29 | protected $fillable = []; |
30 | 30 | |
31 | - public function relationship() { |
|
31 | + public function relationship(){ |
|
32 | 32 | return $this->belongsTo(\App\Models\Lookup\Relationship::class); |
33 | 33 | } |
34 | 34 |
@@ -21,14 +21,14 @@ |
||
21 | 21 | * |
22 | 22 | * @property \App\Models\Lookup\SkillLevel $skill_level |
23 | 23 | */ |
24 | -class SkillLevelTranslation extends BaseModel { |
|
24 | +class SkillLevelTranslation extends BaseModel{ |
|
25 | 25 | |
26 | 26 | protected $casts = [ |
27 | 27 | 'skill_level_id' => 'int' |
28 | 28 | ]; |
29 | 29 | protected $fillable = []; |
30 | 30 | |
31 | - public function skill_level() { |
|
31 | + public function skill_level(){ |
|
32 | 32 | return $this->belongsTo(\App\Models\Lookup\SkillLevel::class); |
33 | 33 | } |
34 | 34 |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | * |
22 | 22 | * @property \App\Models\Lookup\AssessmentType $assessment_type |
23 | 23 | */ |
24 | -class AssessmentTypeTranslation extends BaseModel { |
|
24 | +class AssessmentTypeTranslation extends BaseModel{ |
|
25 | 25 | |
26 | 26 | protected $casts = [ |
27 | 27 | 'id' => 'int', |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | 'name', |
34 | 34 | ]; |
35 | 35 | |
36 | - public function assessment_type() { |
|
36 | + public function assessment_type(){ |
|
37 | 37 | return $this->belongsTo(\App\Models\Lookup\AssessmentType::class); |
38 | 38 | } |
39 | 39 |