Blame view
app/Models/Category.php
531 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 Category extends Model { use HasFactory; |
8c73c7b41 Категории ваканси... |
11 12 13 |
protected $fillable = [ 'name', |
29350503f Расширение полей ... |
14 |
'is_remove' |
8c73c7b41 Категории ваканси... |
15 |
]; |
29350503f Расширение полей ... |
16 17 18 19 |
public function scopeActive($query) { return $query->where('is_remove', '=', '0'); } |
5b68533bb Работа над проект... |
20 21 22 23 24 |
// Один ко многим Категории - к - вакансиям public function ad_employers() { return $this->hasMany(ad_employer::class); } |
02a1ed535 Первый коммит Rek... |
25 |
} |