26 خطوط
545 B
PHP
26 خطوط
545 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
class Subtask extends Model
|
|
{
|
|
protected $fillable = ['task_id', 'title', 'description', 'assignee_id', 'status', 'due_date', 'position'];
|
|
|
|
protected $casts = [
|
|
'due_date' => 'date',
|
|
];
|
|
|
|
public function task(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Task::class);
|
|
}
|
|
|
|
public function assignee(): BelongsTo
|
|
{
|
|
return $this->belongsTo(User::class, 'assignee_id');
|
|
}
|
|
}
|