32 خطوط
612 B
PHP
32 خطوط
612 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
class ActionItem extends Model
|
|
{
|
|
use SoftDeletes;
|
|
|
|
protected $guarded = [];
|
|
|
|
protected $casts = ['due_date' => 'date'];
|
|
|
|
public function project(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Project::class);
|
|
}
|
|
|
|
public function sprint(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Sprint::class);
|
|
}
|
|
|
|
public function meeting(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Meeting::class);
|
|
}
|
|
}
|