initial commit
This commit is contained in:
17
app/Models/MedicationCategory.php
Normal file
17
app/Models/MedicationCategory.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class MedicationCategory extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
|
||||
protected $table = 'medication_categories';
|
||||
|
||||
protected $fillable = [
|
||||
'category_name'
|
||||
];
|
||||
}
|
Reference in New Issue
Block a user