24 lines
443 B
PHP
24 lines
443 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class TechnicianConsumable extends Model
|
|
{
|
|
protected $table = 'technician_consumables';
|
|
|
|
protected $fillable = [
|
|
'user_id',
|
|
'barcode_id',
|
|
'inventory_item_id',
|
|
'material_name',
|
|
'unit',
|
|
'qty_received',
|
|
'qty_used',
|
|
'qty_remaining',
|
|
'status',
|
|
'assigned_at',
|
|
'assigned_by'
|
|
];
|
|
} |