Blame view

app/Models/Employer.php 1.04 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
33
          'category',
          'comment_admin',
          'code',
          'status_hidden'
8de035475   Андрей Ларионов   Создание: Структу...
34
35
36
37
38
39
40
41
          ];
  
      /*
       * Связь таблицы users с таблицей employers
      */
      public function users() {
          return $this->belongsTo(User::class, 'user_id');
      }
82a9544dc   Андрей Ларионов   Связи моделей, гр...
42
43
44
45
46
47
      /*
      * Связь Работодателя с вакансиями
      */
      public function ads() {
          return $this->hasMany(Ad_employer::class);
      }
29350503f   Андрей Ларионов   Расширение полей ...
48
49
50
      public function scopeActive($query) {
          return $query->where('is_remove', '=', '0');
      }
82a9544dc   Андрей Ларионов   Связи моделей, гр...
51

02a1ed535   Андрей Ларионов   Первый коммит Rek...
52
  }