message = $message; } /** * Transform the resource collection into an array. * * @param \Illuminate\Http\Request * @return array */ public function toArray($request) { return [ 'data' => $this->collection->transform(function ($[% model_name_singular_variable %]) { return $this->transformModel($[% model_name_singular_variable %]); }), 'message' => $this->message, 'success' => true, ]; } [% transform_method %] }