skip to Main Content
author
191 views
0 votes

Paypal api – PayPal JS SDK checkout – how to fetch order id created on server?

I’m writing WP plugin that adds a paypal button to a page. I have a js file (example from paypal

author
240 views
0 votes

Php – Laravel 8 prefix on route not working when placed and url works with prefix if its not on code

I have a routes folder admin.php, with following intended code
Route::prefix('admin')->group(function(){
Route::get('/new/dashboard',[SuperAdminController::class,'dashboard']);
Route::get('/new/notifications', [SuperAdminController::class,'notifications']);
});

But

Back To Top
Search