Blame view
app/Models/Title_worker.php
282 Bytes
99a41e761 Личный кабинет по... |
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 Title_worker extends Model { use HasFactory; |
df58eaf86 правки |
11 12 13 14 |
public function worker() { return $this->belongsTo(Worker::class, 'worker_id'); } |
99a41e761 Личный кабинет по... |
15 |
} |