fixing add prescription
This commit is contained in:
19
app/Models/PrescriptionItem.php
Normal file
19
app/Models/PrescriptionItem.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class PrescriptionItem extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
protected $fillable = [
|
||||
'prescription_id',
|
||||
'drug_id',
|
||||
'qty',
|
||||
'unit_id',
|
||||
'note',
|
||||
'signa'
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user