Blame view
app/Models/Employer.php
1.42 KB
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', |
eb8596db6 Правки вакансии, ... |
30 31 32 |
'category', 'comment_admin', 'code', |
a9d6ce8ff Обновление по допам |
33 34 35 |
'status_hidden', 'email_2', 'telephone_2' |
8de035475 Создание: Структу... |
36 37 38 39 40 41 42 43 |
]; /* * Связь таблицы users с таблицей employers */ public function users() { return $this->belongsTo(User::class, 'user_id'); } |
82a9544dc Связи моделей, гр... |
44 45 46 47 48 49 |
/* * Связь Работодателя с вакансиями */ public function ads() { return $this->hasMany(Ad_employer::class); } |
d152a3a68 Создание основных... |
50 51 52 53 54 55 56 57 58 |
// связь Работодателя с флотом public function flots(){ return $this->hasMany(Flot::class); } // связь Работодателя с Должностями в Вакансиях //public function ad_jobs() { // return $this->belongsToMany(Ad_jobs::class, 'ad_employers'); //} |
29350503f Расширение полей ... |
59 60 61 |
public function scopeActive($query) { return $query->where('is_remove', '=', '0'); } |
02a1ed535 Первый коммит Rek... |
62 |
} |