create new culumn in machine and add in controller and createe enum for this
This commit is contained in:
19
app/Enums/MachineStates.php
Normal file
19
app/Enums/MachineStates.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace App\Enums;
|
||||
|
||||
enum MachineStates: int
|
||||
{
|
||||
case AMADE_BE_CAR = 1;
|
||||
case REZERV = 2;
|
||||
case DAR_HAL_MAMOREAT = 3;
|
||||
|
||||
public function label(): string
|
||||
{
|
||||
return match ($this) {
|
||||
self::AMADE_BE_CAR => 'اماده به کار',
|
||||
self::REZERV => 'رزرو',
|
||||
self::DAR_HAL_MAMOREAT => 'در حال ماموریت',
|
||||
};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user