You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
355 B

  1. <?php
  2. namespace App\Model\v3;
  3. use App\Model\Model;
  4. use App\Constants\v3\Withdrawal;
  5. class StoreWithdrawal extends Model
  6. {
  7. protected $table = 'lanzu_store_withdrawal';
  8. protected $appends = [
  9. 'state_text',
  10. ];
  11. public function getStateTextAttribute()
  12. {
  13. return Withdrawal::getMessage($this->attributes['state']);
  14. }
  15. }