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

21 lines
420 B
PHP

<?php
namespace Modules\Withdraw\Http\Resources\Account;
use App\Api\Resources\BaseCollection;
class UserBankAccountCollection extends BaseCollection
{
public function toArray($request): array
{
return [
'data' => $this->collection->map(function ($info) {
return new UserBankAccountResource($info);
}),
'page' => $this->page(),
];
}
}