*/ public function toArray(Request $request): array { return [ 'id' => $this->id, 'name' => $this->name, 'description' => $this->description, 'type' => $this->type, 'credits' => $this->credits, 'amount' => $this->amount, 'currency' => $this->currency, 'formattedAmount' => $this->formattedAmount(), ]; } }