Blame view
app/Models/Job_title.php
868 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 16 |
protected $fillable = [ 'name', 'is_remove', 'parent_id', ]; |
82a9544dc Связи моделей, гр... |
17 18 19 20 21 22 |
/* * Связь модели Вакансии (Ad_employer) с моделью Должности (Job_title) */ public function Ads() { return $this->belongsToMany(Ad_employer::class, 'ad_jobs'); } |
29350503f Расширение полей ... |
23 |
|
5f2a2635a Справочник Должно... |
24 25 26 27 28 29 30 |
/* * Связь таблицы job_titles с таблицей job_titles через ключ parent_id многие-к-одному */ public function parent() { return $this->belongsTo(Job_title::class, 'parent_id'); } |
29350503f Расширение полей ... |
31 32 33 |
public function scopeActive($query) { return $query->where('is_remove', '=', '0'); } |
02a1ed535 Первый коммит Rek... |
34 |
} |