Blame view

app/Models/Employer.php 592 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 Employer extends Model
  {
      use HasFactory;
8de035475   Андрей Ларионов   Создание: Структу...
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
  
      protected $fillable = [
          'name_company',
          'email',
          'telephone',
          'logo',
          'rate',
          'user_id',
          'sort',
          'text',
          'address',
          'map',
          'site',
          ];
  
      /*
       * Связь таблицы users с таблицей employers
      */
      public function users() {
          return $this->belongsTo(User::class, 'user_id');
      }
02a1ed535   Андрей Ларионов   Первый коммит Rek...
32
  }