Blame view

app/Models/Job_title.php 413 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 Job_title extends Model
  {
      use HasFactory;
82a9544dc   Андрей Ларионов   Связи моделей, гр...
11
12
13
14
15
16
17
  
      /*
         * Связь модели Вакансии (Ad_employer) с моделью Должности (Job_title)
         */
      public function Ads() {
          return $this->belongsToMany(Ad_employer::class, 'ad_jobs');
      }
02a1ed535   Андрей Ларионов   Первый коммит Rek...
18
  }