Blame view
app/Models/Job_title.php
1.22 KB
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 |
'sort', |
492296b6f Коммит по итогу п... |
17 18 |
'position_id', 'is_bd' |
29350503f Расширение полей ... |
19 |
]; |
82a9544dc Связи моделей, гр... |
20 21 22 23 24 25 |
/* * Связь модели Вакансии (Ad_employer) с моделью Должности (Job_title) */ public function Ads() { return $this->belongsToMany(Ad_employer::class, 'ad_jobs'); } |
29350503f Расширение полей ... |
26 |
|
5f2a2635a Справочник Должно... |
27 28 29 30 31 32 33 |
/* * Связь таблицы job_titles с таблицей job_titles через ключ parent_id многие-к-одному */ public function parent() { return $this->belongsTo(Job_title::class, 'parent_id'); } |
29350503f Расширение полей ... |
34 35 36 |
public function scopeActive($query) { return $query->where('is_remove', '=', '0'); } |
492296b6f Коммит по итогу п... |
37 38 39 40 41 42 43 44 45 46 47 48 |
public function scopeBdif($query) { return $query->where(function($q) { $q->where('is_bd', '1')->orwhere('is_bd', '2'); }); } public function scopeNotbdif($query) { return $query->where(function($q) { $q->where('is_bd', '0')->orwhere('is_bd', '2'); }); } |
02a1ed535 Первый коммит Rek... |
49 |
} |