18 lines
298 B
PHP
18 lines
298 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
enum WalletTransactionType: string
|
|
{
|
|
case Credit = 'credit';
|
|
case Debit = 'debit';
|
|
|
|
public function label(): string
|
|
{
|
|
return match ($this) {
|
|
self::Credit => 'واریز',
|
|
self::Debit => 'برداشت',
|
|
};
|
|
}
|
|
}
|