feat: install and scaffold Tablar theme #6

Merged
rlong merged 139 commits from feature/tablar-theme into master 2026-05-02 16:01:21 -04:00
Showing only changes of commit 0c4df52f83 - Show all commits
+2 -1
View File
@@ -81,7 +81,8 @@ class PagesController extends Controller
public function checkout(Request $checkout_req) public function checkout(Request $checkout_req)
{ {
if (!$checkout_req->checkoutbiddernum) { if (!$checkout_req->checkoutbiddernum) {
return view('checkout_select_form'); $bidders = \App\Models\Bidders::all();
return view('checkout_select_form', ['bidders' => $bidders]);
} elseif (!$checkout_req->checkout_payment_method) { } elseif (!$checkout_req->checkout_payment_method) {
$checkout_bidder = $checkout_req->checkoutbiddernum; $checkout_bidder = $checkout_req->checkoutbiddernum;
$checkout_list_results = DB::select("SELECT $checkout_list_results = DB::select("SELECT