Files
2026-07-15 17:23:15 +07:00

24 lines
514 B
PHP

<?php
namespace App\Http\Resources\V1;
use Illuminate\Http\Request;
use Illuminate\Http\Resources\Json\ResourceCollection;
class AccountCollection extends ResourceCollection
{
/**
* Transform the resource collection into an array.
*
* @return array<int|string, mixed>
*/
public function toArray(Request $request): array
{
// return [
// 'data' => $this->collection,
// 'status' => true,
// ];
return parent::toArray($request);
}
}