You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
571 B
PHTML
25 lines
571 B
PHTML
1 year ago
|
<?php
|
||
|
|
||
|
namespace App\Http\Resources;
|
||
|
|
||
|
use Illuminate\Http\Request;
|
||
|
use Illuminate\Http\Resources\Json\ResourceCollection;
|
||
|
|
||
|
class LocationCollection extends ResourceCollection
|
||
|
{
|
||
|
/**
|
||
|
* Transform the resource collection into an array.
|
||
|
*
|
||
|
* @return array<int|string, mixed>
|
||
|
*/
|
||
|
public function toArray(Request $request): array
|
||
|
{
|
||
|
//return parent::toArray($request);
|
||
|
|
||
|
return [
|
||
|
'listingCount' => count($this->collection),
|
||
|
'locations' => LocationResource::collection($this->collection),
|
||
|
];
|
||
|
}
|
||
|
}
|