Blame view
app/Models/Category.php
357 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'); } |
02a1ed535 Первый коммит Rek... |
20 |
} |