27 lines
495 B
PHP
27 lines
495 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class AnnouncementView extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $fillable = [
|
|
'worker_id',
|
|
'announcement_id',
|
|
];
|
|
|
|
public function worker()
|
|
{
|
|
return $this->belongsTo(Worker::class, 'worker_id');
|
|
}
|
|
|
|
public function announcement()
|
|
{
|
|
return $this->belongsTo(Announcement::class, 'announcement_id');
|
|
}
|
|
}
|