Teren-app/app/Http/Resources/PersonCollection.php
Simon Pocrnjič 90a5858320 first commit
2024-10-28 21:08:16 +01:00

22 lines
429 B
PHP

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