Add visit placement on care units and beds.
Deploy Ladill Care / deploy (push) Successful in 38s

Patients can be admitted, transferred, and discharged from unit/bed stays with occupancy sync, so MAR and ward boards have inpatient context.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-07-20 10:10:37 +00:00
co-authored by Cursor
parent 3735be3425
commit 45a1a95142
16 changed files with 1036 additions and 22 deletions
+16
View File
@@ -5,6 +5,8 @@ namespace App\Models;
use App\Models\Concerns\BelongsToOwner;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Database\Eloquent\Relations\HasOne;
use Illuminate\Database\Eloquent\SoftDeletes;
class Bed extends Model
@@ -41,4 +43,18 @@ class Bed extends Model
{
return $this->belongsTo(CareUnit::class, 'care_unit_id');
}
public function stays(): HasMany
{
return $this->hasMany(BedStay::class, 'bed_id');
}
public function activeStay(): HasOne
{
return $this->hasOne(BedStay::class, 'bed_id')
->ofMany(
['id' => 'max'],
fn ($query) => $query->where('status', BedStay::STATUS_ACTIVE),
);
}
}