Blame view

app/Models/Message.php 943 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
17
18
      protected $fillable = [
          'user_id',
          'to_user_id',
          'text',
          'file',
          'flag_new'
      ];
82a9544dc   Андрей Ларионов   Связи моделей, гр...
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
      /*
       * Связь таблицы 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');
      }
  
      /*
      * Связь модели Сообщения (Message) с моделью Отклик на Вакансию (Ad_response)
      */
      public function response() {
          return $this->hasMany(ad_response::class);
      }
02a1ed535   Андрей Ларионов   Первый коммит Rek...
39
  }