19 lines
321 B
PHP
19 lines
321 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
class PatientAnswer extends Model
|
|
{
|
|
protected $table = 'patient_answers';
|
|
|
|
protected $fillable = [
|
|
'patient_id',
|
|
'question_id',
|
|
'appointment_id',
|
|
'answer'
|
|
];
|
|
}
|