Blame view

app/Models/Employer.php 983 Bytes
2dde15d57   Андрей Ларионов   Утверждение переноса
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  <?php
  
  namespace App\Models;
  
  use Illuminate\Database\Eloquent\Factories\HasFactory;
  use Illuminate\Database\Eloquent\Model;
  
  class Employer extends Model
  {
      use HasFactory;
  
      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',
2dde15d57   Андрей Ларионов   Утверждение переноса
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

2dde15d57   Андрей Ларионов   Утверждение переноса
48
  }