Blame view
app/Models/Employer.php
759 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 24 25 26 27 28 29 30 31 |
protected $fillable = [ 'name_company', 'email', 'telephone', 'logo', 'rate', 'user_id', 'sort', 'text', 'address', 'map', 'site', ]; /* * Связь таблицы users с таблицей employers */ public function users() { return $this->belongsTo(User::class, 'user_id'); } |
82a9544dc Связи моделей, гр... |
32 33 34 35 36 37 |
/* * Связь Работодателя с вакансиями */ public function ads() { return $this->hasMany(Ad_employer::class); } |
02a1ed535 Первый коммит Rek... |
38 |
} |