Files
water-back/modules/Withdraw/Http/Resources/Account/UserAlipayAccountResource.php
2023-01-12 14:47:38 +08:00

21 lines
518 B
PHP

<?php
namespace Modules\Withdraw\Http\Resources\Account;
use Illuminate\Http\Resources\Json\JsonResource;
class UserAlipayAccountResource extends JsonResource
{
public function toArray($request): array
{
return [
'alipay_account_id' => $this->id,
'name' => $this->name,
'identity_type' => $this->identity_type,
'identity' => $this->identity,
'created_at' => (string) $this->created_at,
];
}
}