34 lines
639 B
PHP
34 lines
639 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class GoalType extends BaseModel
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $fillable = [
|
|
'created_by',
|
|
'name',
|
|
'description',
|
|
'status'
|
|
];
|
|
|
|
/**
|
|
* Get the company that owns this goal type.
|
|
*/
|
|
public function company()
|
|
{
|
|
return $this->belongsTo(User::class, 'created_by');
|
|
}
|
|
|
|
/**
|
|
* Get the employee goals for this goal type.
|
|
*/
|
|
public function goals()
|
|
{
|
|
return $this->hasMany(EmployeeGoal::class, 'goal_type_id');
|
|
}
|
|
} |