redirectURLはデータをPOSTしないようです。それはGET要求を使用しているようです。返品URLの支払いIDまたは支払いステータスを確認するにはどうすればよいですか?redirecturlにMollieの注文状況を表示するにはどうすればよいですか?
$payment = \mollie::api()->payments()->create([
'amount' => $price,
'customerId' => $customer->id,
'description' => 'My Initial Payment',
'redirectUrl' => \URL::to('/after-payment'),
]);