2026-02-04 08:38:00 +09:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Models\Items;
|
|
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
|
|
|
|
|
|
class Item extends Model
|
|
|
|
|
{
|
|
|
|
|
use SoftDeletes;
|
|
|
|
|
|
|
|
|
|
protected $fillable = [
|
|
|
|
|
'tenant_id',
|
|
|
|
|
'item_type',
|
|
|
|
|
'item_category',
|
|
|
|
|
'code',
|
|
|
|
|
'name',
|
|
|
|
|
'unit',
|
|
|
|
|
'is_active',
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
protected $casts = [
|
|
|
|
|
'is_active' => 'boolean',
|
2026-02-05 09:26:13 +09:00
|
|
|
'attributes' => 'array',
|
2026-02-04 08:38:00 +09:00
|
|
|
];
|
|
|
|
|
}
|