24 خطوط
495 B
PHP
24 خطوط
495 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
class SprintRetrospective extends Model
|
|
{
|
|
protected $fillable = [
|
|
'sprint_id', 'went_well', 'problems', 'improvements', 'updated_by',
|
|
];
|
|
|
|
public function sprint(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Sprint::class);
|
|
}
|
|
|
|
public function updater(): BelongsTo
|
|
{
|
|
return $this->belongsTo(User::class, 'updated_by');
|
|
}
|
|
}
|