for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Http\Collections;
use Illuminate\Http\Resources\Json\ResourceCollection;
class WorldCollection extends ResourceCollection
{
public function toArray($request)
return [
'data' => $this->collection,
];
}