minor
This commit is contained in:
parent
61629a1d5a
commit
6a8e5837ec
@ -21,6 +21,11 @@ public function radiologist(): BelongsTo
|
|||||||
return $this->belongsTo(User::class, 'read_by_id');
|
return $this->belongsTo(User::class, 'read_by_id');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function approver(): BelongsTo
|
||||||
|
{
|
||||||
|
return $this->belongsTo(User::class, 'approved_by_id');
|
||||||
|
}
|
||||||
|
|
||||||
public function setStatus(ReportStatus $status, User|int|null $user = null): void
|
public function setStatus(ReportStatus $status, User|int|null $user = null): void
|
||||||
{
|
{
|
||||||
$user_id = me($user)->id;
|
$user_id = me($user)->id;
|
||||||
|
Loading…
Reference in New Issue
Block a user