feat: integrate North Embedded Checkout for bidder payments

This commit is contained in:
2026-05-01 08:18:26 -04:00
parent e4cccba942
commit b0816231d6
7 changed files with 274 additions and 1 deletions
+4 -1
View File
@@ -535,10 +535,13 @@ class PagesController extends Controller
$total_cost = $winnings->sum('winning_cost');
$is_checked_out = \App\Models\Checkout::where('bidder_num', $bidder->idbidders)->exists();
return view('mywinnings_results', [
'bidder' => $bidder,
'winnings' => $winnings,
'total_cost' => $total_cost
'total_cost' => $total_cost,
'is_checked_out' => $is_checked_out
]);
}
}