'datetime', ]; /** * Get the announcement that was viewed. */ public function announcement() { return $this->belongsTo(Announcement::class); } /** * Get the employee who viewed the announcement. */ public function employee() { return $this->belongsTo(User::class, 'employee_id'); } }