34 خطوط
748 B
PHP
34 خطوط
748 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
class MeetingActionItem extends Model
|
|
{
|
|
protected $fillable = [
|
|
'meeting_id', 'title', 'assigned_to', 'due_date', 'is_completed', 'converted_to_task_id'
|
|
];
|
|
|
|
protected $casts = [
|
|
'due_date' => 'date',
|
|
'is_completed' => 'boolean',
|
|
];
|
|
|
|
public function meeting(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Meeting::class);
|
|
}
|
|
|
|
public function assignee(): BelongsTo
|
|
{
|
|
return $this->belongsTo(User::class, 'assigned_to');
|
|
}
|
|
|
|
public function convertedTask(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Task::class, 'converted_to_task_id');
|
|
}
|
|
}
|