*/ public function toArray(Request $request): array { $rowService = app(AdminAppTicketRowService::class); $details = $rowService->details($this->resource); return [ ...parent::toArray($request), ...$details, 'allow_refund' => $this->resource->allow_refund(), 'values' => $rowService->values($this->resource, $details), ]; } }