21 lines
518 B
PHP
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,
|
|
];
|
|
}
|
|
|
|
} |