Blame view
app/Models/Employer.php
983 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 Employer extends Model { use HasFactory; |
8de035475 Создание: Структу... |
11 12 13 14 15 16 17 18 19 20 21 22 23 |
protected $fillable = [ 'name_company', 'email', 'telephone', 'logo', 'rate', 'user_id', 'sort', 'text', 'address', 'map', 'site', |
29350503f Расширение полей ... |
24 25 26 27 28 29 |
'coord', 'plus', 'is_remove', 'oficial_status', 'social_is', 'sending_is', |
8de035475 Создание: Структу... |
30 31 32 33 34 35 36 37 |
]; /* * Связь таблицы users с таблицей employers */ public function users() { return $this->belongsTo(User::class, 'user_id'); } |
82a9544dc Связи моделей, гр... |
38 39 40 41 42 43 |
/* * Связь Работодателя с вакансиями */ public function ads() { return $this->hasMany(Ad_employer::class); } |
29350503f Расширение полей ... |
44 45 46 |
public function scopeActive($query) { return $query->where('is_remove', '=', '0'); } |
82a9544dc Связи моделей, гр... |
47 |
|
02a1ed535 Первый коммит Rek... |
48 |
} |