Blame view
app/Models/Job_title.php
906 Bytes
02a1ed535 Первый коммит Rek... |
1 2 3 4 5 6 7 8 9 10 |
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class Job_title extends Model { use HasFactory; |
82a9544dc Связи моделей, гр... |
11 |
|
29350503f Расширение полей ... |
12 13 14 15 |
protected $fillable = [ 'name', 'is_remove', 'parent_id', |
31fe4e458 Показ проекта зак... |
16 17 |
'sort', 'position_id' |
29350503f Расширение полей ... |
18 |
]; |
82a9544dc Связи моделей, гр... |
19 20 21 22 23 24 |
/* * Связь модели Вакансии (Ad_employer) с моделью Должности (Job_title) */ public function Ads() { return $this->belongsToMany(Ad_employer::class, 'ad_jobs'); } |
29350503f Расширение полей ... |
25 |
|
5f2a2635a Справочник Должно... |
26 27 28 29 30 31 32 |
/* * Связь таблицы job_titles с таблицей job_titles через ключ parent_id многие-к-одному */ public function parent() { return $this->belongsTo(Job_title::class, 'parent_id'); } |
29350503f Расширение полей ... |
33 34 35 |
public function scopeActive($query) { return $query->where('is_remove', '=', '0'); } |
02a1ed535 Первый коммит Rek... |
36 |
} |