Blame view
app/Models/Job_title.php
611 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 24 25 26 |
public function scopeActive($query) { return $query->where('is_remove', '=', '0'); } |
02a1ed535 Первый коммит Rek... |
27 |
} |