15 lines
205 B
PHP
15 lines
205 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class LabKit extends Model
|
|
{
|
|
protected $table = "lab_kit";
|
|
protected $fillable = [
|
|
'name',
|
|
'amount',
|
|
];
|
|
}
|