dstpabuaran.com/app/Enums/RawMaterialUnit.php
Yoga Pangestu 384460686e feat: implement raw material management features including CRUD operations and draft handling
- Added RawMaterialController and RawMaterialVariantController for managing raw materials and their variants.
- Introduced RawMaterialRequest and RawMaterialVariantRequest for validation.
- Implemented RawMaterialService and RawMaterialVariantService for business logic.
- Created hooks for saving drafts of raw materials.
- Developed UI components for creating, editing, and listing raw materials and variants.
2026-08-02 00:54:05 +07:00

15 lines
187 B
PHP

<?php
namespace App\Enums;
use App\Enums\Concerns\HasValues;
enum RawMaterialUnit: string
{
use HasValues;
case KG = 'kg';
case METER = 'meter';
case YARD = 'yard';
}