Blame view

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

e688e0d8a   Андрей Ларионов   Статистика работн...
12
13
14
15
16
      protected $fillable = [
          'user_id',
          'to_user_id',
          'text',
          'file',
f8a3cafe5   Андрей Ларионов   диалоговые пробле...
17
18
19
          'flag_new',
          'ad_employer_id',
          'job_title_id'
e688e0d8a   Андрей Ларионов   Статистика работн...
20
      ];
82a9544dc   Андрей Ларионов   Связи моделей, гр...
21
22
23
24
25
26
27
28
29
30
31
32
33
      /*
       * Связь таблицы Message с таблицей User (Отправитель)
      */
      public function user_from() {
          return $this->belongsTo(User::class, 'user_id');
      }
  
      /*
       * Связь таблицы Message с таблицей User (Получатель)
      */
      public function user_to() {
          return $this->belongsTo(User::class, 'to_user_id');
      }
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
34
35
      // Связь модели Сообщения (Message) с моделью Вакансии (Ad_employer)
      public function vacancies() {
6e2255214   Андрей Ларионов   Работа над сообще...
36
          return $this->belongsTo(Ad_employer::class, 'ad_employer_id', 'id');
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
37
      }
02a1ed535   Андрей Ларионов   Первый коммит Rek...
38
  }