File tree 1 file changed +2
-3
lines changed
app/Http/Controllers/Payments
1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 7
7
8
8
use App \Exceptions \InvalidSignatureException ;
9
9
use App \Exceptions \Store \OrderException ;
10
- use App \Libraries \OrderCheckout ;
11
10
use App \Libraries \Payments \XsollaPaymentProcessor ;
12
11
use App \Libraries \Payments \XsollaSignature ;
13
12
use App \Libraries \Payments \XsollaUserNotFoundException ;
@@ -106,9 +105,9 @@ public function callback(HttpRequest $request)
106
105
public function completed ()
107
106
{
108
107
$ orderNumber = Request::input ('foreignInvoice ' ) ?? '' ;
109
- $ order = OrderCheckout:: for ($ orderNumber )->completeCheckout ();
108
+ $ order = Order:: whereOrderNumber ($ orderNumber )->firstOrFail ();
110
109
111
- return redirect (route ('store.invoice.show ' , ['invoice ' => $ order ->order_id , 'thanks ' => 1 ]));
110
+ return redirect (route ('store.invoice.show ' , ['invoice ' => $ order ->getKey () , 'thanks ' => 1 ]));
112
111
}
113
112
114
113
private function errorResponse (string $ message , string $ code , int $ status )
You can’t perform that action at this time.
0 commit comments