Files
myskin-api/app/Http/Resources/V1/DoctorProfileCollection.php
2026-07-15 17:23:15 +07:00

20 lines
413 B
PHP

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