Files

17 lines
280 B
Plaintext

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