Blame view

app/Models/Static_worker.php 553 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 Static_worker extends Model
  {
      use HasFactory;
e688e0d8a   Андрей Ларионов   Статистика работн...
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
  
      protected $fillable = [
          'user_id',
          'lookin',
          'year_month',
          'message',
          'old_lookin',
          'old_message'
      ];
  
      /*
     * Связь таблицы users с таблицей static_workers
     многие-к-одному
    */
      public function users() {
          return $this->belongsTo(User::class, 'user_id');
      }
02a1ed535   Андрей Ларионов   Первый коммит Rek...
28
  }