15 lines
246 B
PHP
15 lines
246 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class PatientTask extends Model
|
|
{
|
|
protected $table = "patient_tasks";
|
|
protected $fillable = [
|
|
'patient_id',
|
|
'description',
|
|
'is_solved'
|
|
];
|
|
} |