akaunting/app/Console/Stubs/Modules/resource.stub

20 lines
341 B
Plaintext
Raw Normal View History

2019-11-16 07:21:14 +00:00
<?php
namespace $NAMESPACE$;
2020-07-10 20:23:17 +00:00
use Illuminate\Http\Resources\Json\JsonResource;
2019-11-16 07:21:14 +00:00
2020-07-10 20:23:17 +00:00
class $CLASS$ extends JsonResource
2019-11-16 07:21:14 +00:00
{
/**
* Transform the resource into an array.
*
* @param \Illuminate\Http\Request
* @return array
*/
public function toArray($request)
{
return parent::toArray($request);
}
}