<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;

class Asrs extends Model
{
    use HasFactory;

    protected $fillable = [
        'patient_id',
        'question',
        'answer_value',
        'answer_text',
        'notes',
    ];

    // Optional: Define relationship with Patient
    public function patient()
    {
        return $this->belongsTo(Patient::class);
    }
}
     