Blame view

app/Models/ad_response.php 1.09 KB
586cff847   Андрей Ларионов   Модели и миграции...
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 ad_response extends Model
  {
      use HasFactory;
82a9544dc   Андрей Ларионов   Связи моделей, гр...
11

e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
12
13
14
15
16
17
18
19
      protected $fillable = [
          'message_id',
          'ad_employer_id',
          'job_title_id',
          'flag',
          'created_at',
          'updated_at'
      ];
82a9544dc   Андрей Ларионов   Связи моделей, гр...
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
      /*
       * Связь таблицы Отклик на вакансию (ad_response) с таблицей Вакансия (ad_employer)
      */
      public function ad_employer() {
          return $this->belongsTo(Ad_employer::class, 'ad_employer_id');
      }
  
      /*
       * Связь таблицы Отклик на вакансию (ad_response) с таблицей Должность (job_title)
     */
      public function job_title() {
          return $this->belongsTo(Job_title::class, 'job_title_id');
      }
  
      /*
       * Связь таблицы Отклик на вакансию (ad_response) с таблицей Сообщение (messages)
      */
      public function message() {
          return $this->belongsTo(Message::class, 'message_id');
      }
586cff847   Андрей Ларионов   Модели и миграции...
40
  }