This commit is contained in:
iVampireSP.com 2023-02-11 02:20:18 +08:00
parent ca4a10830e
commit c00b97bf8e
No known key found for this signature in database
GPG Key ID: 2F7B001CA27A8132

View File

@ -131,7 +131,7 @@ public function cost(Request $request, Host $host): JsonResponse
'description' => 'nullable|string:max:255',
]);
$host->cost($request->input('amount'), false);
$host->cost($request->input('amount'), false, $request->input('description'));
return $this->noContent();
}