11 lines
136 B
PHP
11 lines
136 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
enum StatusLahan: string
|
|
{
|
|
case SENDIRI = 'sendiri';
|
|
case SEWA = 'sewa';
|
|
case ADAT = 'adat';
|
|
}
|