ManagementSystem/BACKEND/stubs/nwidart-stubs/resource-collection.stub

17 lines
303 B
Plaintext
Executable File

<?php
namespace $NAMESPACE$;
use Illuminate\Http\Resources\Json\ResourceCollection;
class $CLASS$ extends ResourceCollection
{
/**
* Transform the resource collection into an array.
*/
public function toArray($request): array
{
return parent::toArray($request);
}
}