Compare commits
106 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 24e2d91eb7 | |||
| 80545f38b3 | |||
| 1b30673823 | |||
| 3703ed569a | |||
| c63ca6626e | |||
| a7edc0115d | |||
| e8a31380f7 | |||
| 1ad8f53a95 | |||
| 05dad0ece0 | |||
| b5bbe4d1b5 | |||
| 2db4ad18e3 | |||
| 107223f2cc | |||
| 799eb37ae0 | |||
| d79d2fbe3e | |||
| 6e2c27a5a4 | |||
| 9e2c50a9ee | |||
| 239ee20397 | |||
| 7bf32dfdcc | |||
| f96b70684b | |||
| bd87475b4d | |||
| 6b1d87414e | |||
| 7a4b926aac | |||
| fb31d91476 | |||
| 55a05ef00e | |||
| a4483788cf | |||
| 2a6edc07f9 | |||
| ba6182e41e | |||
| 2cd8feb19d | |||
| b6ed1e8325 | |||
| 7a29315759 | |||
| 5f4b0c16a3 | |||
| 599b404791 | |||
| 3ddf99172e | |||
| 5c1b855283 | |||
| a4f26e9006 | |||
| 444b9e26db | |||
| 24905c9506 | |||
| 6cb3e1ac24 | |||
| 30dbbd6d58 | |||
| 6193e7fce4 | |||
| 2521246bda | |||
| b208af478d | |||
| 7d9af30ed3 | |||
| 46fbe7c98d | |||
| 87aa8d74d4 | |||
| 01a6d78333 | |||
| af49c71d72 | |||
| e74295fee4 | |||
| e47e20e49b | |||
| 365ebf112a | |||
| 8e6f4bdcfc | |||
| 597c11acd1 | |||
| ea0c1272d1 | |||
| 66e0e467df | |||
| 46c88ed22a | |||
| 4bd0ec6e35 | |||
| 68f3be7644 | |||
| e19c077203 | |||
| bb71e41459 | |||
| 1f4b108c51 | |||
| 762b242046 | |||
| 3cc39c4b3d | |||
| ef00695950 | |||
| 3f711effdc | |||
| 599dfb6f14 | |||
| 5049ed9777 | |||
| b564a63c67 | |||
| 3d95c63e63 | |||
| 72362d2d90 | |||
| 0c4df52f83 | |||
| c6a82f66ad | |||
| 760a3887b6 | |||
| 583b146f41 | |||
| 9526e17f09 | |||
| b82df0a0fb | |||
| 7598164ce4 | |||
| e813d2543f | |||
| 74d67d073e | |||
| e5dbe3e126 | |||
| 18e7c9b361 | |||
| bec2234bd4 | |||
| 492ff400c7 | |||
| d0a0149a75 | |||
| 10349075b0 | |||
| 44a34b1114 | |||
| bd93dd0bf7 | |||
| 81dbf11592 | |||
| 7c88db310d | |||
| 0fd6a6c3e2 | |||
| 01c1d77016 | |||
| 008000314f | |||
| a382a434d4 | |||
| 610ee4290b | |||
| 846db1accf | |||
| 78c2fbb41a | |||
| f130d39118 | |||
| 1adb557265 | |||
| 75aa121ac7 | |||
| 296a6b9243 | |||
| ccac39cd85 | |||
| 69e4516ad8 | |||
| f6aac32eaa | |||
| a60a89d77d | |||
| cec229459d | |||
| 2ae745ffea | |||
| bd52e27f76 |
@@ -7,7 +7,7 @@ use Illuminate\Routing\Controller as BaseController;
|
||||
use Illuminate\Foundation\Validation\ValidatesRequests;
|
||||
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
|
||||
|
||||
class Controller extends BaseController
|
||||
class Controller extends \Illuminate\Routing\Controller
|
||||
{
|
||||
use AuthorizesRequests, DispatchesJobs, ValidatesRequests;
|
||||
}
|
||||
|
||||
@@ -81,7 +81,8 @@ class PagesController extends Controller
|
||||
public function checkout(Request $checkout_req)
|
||||
{
|
||||
if (!$checkout_req->checkoutbiddernum) {
|
||||
return view('checkout_select_form');
|
||||
$bidders = \App\Models\Bidders::orderByRaw('CAST(bidder_assigned_number AS UNSIGNED) ASC')->get();
|
||||
return view('checkout_select_form', ['bidders' => $bidders]);
|
||||
} elseif (!$checkout_req->checkout_payment_method) {
|
||||
$checkout_bidder = $checkout_req->checkoutbiddernum;
|
||||
$checkout_list_results = DB::select("SELECT
|
||||
@@ -334,15 +335,7 @@ class PagesController extends Controller
|
||||
|
||||
public function winnersbyitem()
|
||||
{
|
||||
$winnersbyitem_results = DB::select("SELECT
|
||||
*
|
||||
FROM winning_bids
|
||||
INNER JOIN items as items
|
||||
ON winning_bids.winning_item_num=items.iditems
|
||||
INNER JOIN bidders AS bidders
|
||||
ON winning_bids.winning_bidder_num=bidders.idbidders
|
||||
ORDER BY item_assigned_num ASC
|
||||
");
|
||||
$winnersbyitem_results = WinningBids::with(['items', 'bidders'])->get();
|
||||
return view('winnersbyitem', ['winnersbyitem_results' => $winnersbyitem_results]);
|
||||
}
|
||||
|
||||
@@ -377,37 +370,41 @@ class PagesController extends Controller
|
||||
|
||||
public function winningbidderlist()
|
||||
{
|
||||
$winnerlist_results = WinningBids::join('bidders', 'winning_bids.winning_bidder_num', '=', 'bidders.idbidders')
|
||||
->groupBy('winning_bidder_num')
|
||||
->orderBy('bidders.bidder_assigned_number')
|
||||
$winnerlist_results = Bidders::whereHas('winningBids')
|
||||
->orderBy('bidder_assigned_number')
|
||||
->get();
|
||||
return view('winningbidderlist', ['winnerlist_results' => $winnerlist_results]);
|
||||
return view('winningbidderlist', ['winning_bidders' => $winnerlist_results]);
|
||||
}
|
||||
|
||||
public function judgingentry(Request $judgingentry_req)
|
||||
{
|
||||
if (!$judgingentry_req->vehnum) {
|
||||
return view('judgingentry');
|
||||
}
|
||||
$judges = \App\Models\Judges::all();
|
||||
$vehicles = \App\Models\Vehicles::select('vehicles.*')
|
||||
->leftJoin('bidders', 'vehicles.owner', '=', 'bidders.bidder_assigned_number')
|
||||
->orderByRaw('CAST(bidders.bidder_assigned_number AS UNSIGNED) ASC')
|
||||
->get();
|
||||
|
||||
if ($judgingentry_req->isMethod('post')) {
|
||||
$vehicle = $judgingentry_req->vehnum;
|
||||
$judge = $judgingentry_req->judgenum;
|
||||
$score = $judgingentry_req->vehscore;
|
||||
$bidder_insert = VehicleScores::updateOrCreate(
|
||||
[
|
||||
'vehicle' => $vehicle,
|
||||
'judge' => $judge
|
||||
],
|
||||
[
|
||||
'overall_score' => $score
|
||||
]
|
||||
|
||||
VehicleScores::updateOrCreate(
|
||||
['vehicle' => $vehicle, 'judge' => $judge],
|
||||
['overall_score' => $score]
|
||||
);
|
||||
|
||||
return redirect('judgingentry');
|
||||
}
|
||||
|
||||
return view('judgingentry', ['judges' => $judges, 'vehicles' => $vehicles]);
|
||||
}
|
||||
|
||||
public function showcars(Request $showcar_req)
|
||||
{
|
||||
if (!$showcar_req->bidderlname) {
|
||||
return view('showcars');
|
||||
$vehicles = \App\Models\Vehicles::with('vehicleOwner')->get();
|
||||
return view('showcars', ['vehicles' => $vehicles]);
|
||||
}
|
||||
$bidder_lname = $showcar_req->bidderlname;
|
||||
$bidder_fname = $showcar_req->bidderfname;
|
||||
|
||||
@@ -16,7 +16,8 @@
|
||||
"laravel/tinker": "^2.9",
|
||||
"laravel/ui": "^4.2",
|
||||
"socialiteproviders/manager": "^4.9",
|
||||
"spatie/laravel-pdf": "^2.8"
|
||||
"spatie/laravel-pdf": "^2.8",
|
||||
"takielias/tablar": "^13.02"
|
||||
},
|
||||
"require-dev": {
|
||||
"barryvdh/laravel-debugbar": "^3.8",
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||
"This file is @generated automatically"
|
||||
],
|
||||
"content-hash": "6a8c1dbed78b92e966ff11684e8bb902",
|
||||
"content-hash": "9f3b5396da1f090c9cab4f086f23f776",
|
||||
"packages": [
|
||||
{
|
||||
"name": "barryvdh/laravel-snappy",
|
||||
@@ -9312,6 +9312,70 @@
|
||||
],
|
||||
"time": "2026-03-30T13:44:50+00:00"
|
||||
},
|
||||
{
|
||||
"name": "takielias/tablar",
|
||||
"version": "13.02",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/takielias/tablar.git",
|
||||
"reference": "bb38f4f12482a41297ca5f19667cb1fdc6d5e0ef"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/takielias/tablar/zipball/bb38f4f12482a41297ca5f19667cb1fdc6d5e0ef",
|
||||
"reference": "bb38f4f12482a41297ca5f19667cb1fdc6d5e0ef",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"illuminate/support": ">=10.0"
|
||||
},
|
||||
"conflict": {
|
||||
"laravel/breeze": "*"
|
||||
},
|
||||
"require-dev": {
|
||||
"orchestra/testbench": ">=9.0",
|
||||
"phpunit/phpunit": ">=10.0"
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"laravel": {
|
||||
"providers": [
|
||||
"TakiElias\\Tablar\\TablarServiceProvider"
|
||||
]
|
||||
},
|
||||
"branch-alias": {
|
||||
"dev-master": "1.0-dev"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"TakiElias\\Tablar\\": "src/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Taki Elias",
|
||||
"email": "taki.elias@gmail.com"
|
||||
}
|
||||
],
|
||||
"description": "Tablar: A Laravel Dashboard Preset Featuring Dark Mode and Dynamic Menu Generation for Effortless Navigation and Fast Development.",
|
||||
"keywords": [
|
||||
"bootstrap",
|
||||
"laravel",
|
||||
"preset",
|
||||
"tabler",
|
||||
"vite"
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/takielias/tablar/issues",
|
||||
"source": "https://github.com/takielias/tablar/tree/13.02"
|
||||
},
|
||||
"time": "2026-03-26T09:58:14+00:00"
|
||||
},
|
||||
{
|
||||
"name": "thecodingmachine/safe",
|
||||
"version": "v3.4.0",
|
||||
|
||||
@@ -0,0 +1,145 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'title' => 'Silent Auction Dashboard',
|
||||
'logo' => '/assets/tablar-logo.png',
|
||||
'menu' => [
|
||||
[
|
||||
'text' => 'Home',
|
||||
'route' => 'home',
|
||||
'icon' => 'ti ti-home',
|
||||
],
|
||||
[
|
||||
'text' => 'Bidders',
|
||||
'icon' => 'ti ti-users',
|
||||
'submenu' => [
|
||||
[
|
||||
'text' => 'Add Bidder',
|
||||
'route' => 'bidders',
|
||||
],
|
||||
[
|
||||
'text' => 'List Bidders',
|
||||
'route' => 'bidderlist',
|
||||
],
|
||||
],
|
||||
],
|
||||
[
|
||||
'text' => 'Items',
|
||||
'icon' => 'ti ti-box',
|
||||
'submenu' => [
|
||||
[
|
||||
'text' => 'Add Item',
|
||||
'route' => 'items',
|
||||
],
|
||||
[
|
||||
'text' => 'List Items',
|
||||
'route' => 'itemlist',
|
||||
],
|
||||
],
|
||||
],
|
||||
[
|
||||
'text' => 'Winners',
|
||||
'icon' => 'ti ti-trophy',
|
||||
'submenu' => [
|
||||
[
|
||||
'text' => 'Add Winner',
|
||||
'route' => 'winners',
|
||||
],
|
||||
[
|
||||
'text' => 'Edit Winner',
|
||||
'route' => 'editwinners',
|
||||
],
|
||||
[
|
||||
'text' => 'List Winners',
|
||||
'route' => 'winnerlist',
|
||||
],
|
||||
[
|
||||
'text' => 'Winners by Item',
|
||||
'route' => 'winnersbyitem',
|
||||
],
|
||||
[
|
||||
'text' => 'Check My Winnings',
|
||||
'route' => 'mywinnings',
|
||||
],
|
||||
],
|
||||
],
|
||||
[
|
||||
'text' => 'CarShow',
|
||||
'icon' => 'ti ti-car',
|
||||
'submenu' => [
|
||||
[
|
||||
'text' => 'Add Car',
|
||||
'route' => 'showcars',
|
||||
],
|
||||
[
|
||||
'text' => 'List Show Cars',
|
||||
'route' => 'showcarlist',
|
||||
],
|
||||
[
|
||||
'text' => 'Judging Entry',
|
||||
'route' => 'judgingentry',
|
||||
],
|
||||
[
|
||||
'text' => 'People\'s Choice Entry',
|
||||
'route' => 'pcentry',
|
||||
],
|
||||
[
|
||||
'text' => 'Add Judge',
|
||||
'route' => 'judges',
|
||||
],
|
||||
[
|
||||
'text' => 'Car Show Winners',
|
||||
'route' => 'showwinners',
|
||||
],
|
||||
[
|
||||
'text' => 'Vehicle Total Scores',
|
||||
'route' => 'showscores',
|
||||
],
|
||||
[
|
||||
'text' => 'Scores by Car',
|
||||
'route' => 'showscoresbycar',
|
||||
],
|
||||
[
|
||||
'text' => 'Tabulate Winners',
|
||||
'route' => 'tabulateshowwinners',
|
||||
],
|
||||
],
|
||||
],
|
||||
[
|
||||
'text' => 'Reports',
|
||||
'icon' => 'ti ti-file-text',
|
||||
'submenu' => [
|
||||
[
|
||||
'text' => 'Bidder List',
|
||||
'route' => 'bidderlist',
|
||||
],
|
||||
[
|
||||
'text' => 'Completed Checkouts',
|
||||
'route' => 'checkout_complete_list',
|
||||
],
|
||||
[
|
||||
'text' => 'Items',
|
||||
'route' => 'itemlist',
|
||||
],
|
||||
[
|
||||
'text' => 'Winners',
|
||||
'route' => 'winnerlist',
|
||||
],
|
||||
],
|
||||
],
|
||||
[
|
||||
'text' => 'Checkout',
|
||||
'icon' => 'ti ti-credit-card',
|
||||
'submenu' => [
|
||||
[
|
||||
'text' => 'Checkout Bidder',
|
||||
'route' => 'checkout',
|
||||
],
|
||||
[
|
||||
'text' => 'Re-Print Receipt',
|
||||
'route' => 'reprint_receipt',
|
||||
],
|
||||
],
|
||||
],
|
||||
],
|
||||
];
|
||||
@@ -1,21 +1,43 @@
|
||||
{
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "npm run development",
|
||||
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
|
||||
"watch": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
|
||||
"watch-poll": "npm run watch -- --watch-poll",
|
||||
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
|
||||
"prod": "npm run production",
|
||||
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
|
||||
"dev": "vite",
|
||||
"build": "vite build"
|
||||
},
|
||||
"devDependencies": {
|
||||
"axios": "^0.15.3",
|
||||
"@melloware/coloris": "^0.25.0",
|
||||
"@popperjs/core": "^2.11.8",
|
||||
"@tabler/core": "1.4.0",
|
||||
"@tabler/icons": "^3.35.0",
|
||||
"@tabler/icons-webfont": "^3.35.0",
|
||||
"apexcharts": "^3.54.1",
|
||||
"autosize": "^6.0.1",
|
||||
"axios": "^1.7.4",
|
||||
"bootstrap": "5.3.8",
|
||||
"bootstrap-sass": "^3.3.7",
|
||||
"cross-env": "^3.2.3",
|
||||
"jquery": "^3.1.1",
|
||||
"laravel-mix": "0.*",
|
||||
"lodash": "^4.17.4",
|
||||
"vue": "^2.1.10"
|
||||
"choices.js": "^11.1.0",
|
||||
"countup.js": "^2.9.0",
|
||||
"cross-env": "^7.0.3",
|
||||
"dropzone": "^6.0.0-beta.2",
|
||||
"fslightbox": "^3.7.4",
|
||||
"fullcalendar": "^6.1.19",
|
||||
"imask": "^7.6.1",
|
||||
"jquery": "^3.7.1",
|
||||
"jsvectormap": "^1.7.0",
|
||||
"laravel-vite-plugin": "^1.0",
|
||||
"list.js": "^2.3.1",
|
||||
"litepicker": "^2.0.12",
|
||||
"lodash": "^4.17.21",
|
||||
"nouislider": "^15.8.1",
|
||||
"plyr": "^3.8.3",
|
||||
"sass": "~1.64.2",
|
||||
"sass-loader": "^16.0.1",
|
||||
"signature_pad": "^5.1.1",
|
||||
"star-rating.js": "^4.3.1",
|
||||
"tom-select": "^2.4.3",
|
||||
"typed.js": "^2.1.0",
|
||||
"vite": "^5.0.0",
|
||||
"vite-plugin-static-copy": "~3.0.0"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1 +1 @@
|
||||
/home/sjcsauction/public_html/.well-known
|
||||
auction/home/sjcsauction/public_html/.well-known
|
||||
|
After Width: | Height: | Size: 2.8 KiB |
|
After Width: | Height: | Size: 8.3 KiB |
|
After Width: | Height: | Size: 4.8 KiB |
|
After Width: | Height: | Size: 8.3 KiB |
|
After Width: | Height: | Size: 5.7 KiB |
|
After Width: | Height: | Size: 8.3 KiB |
|
After Width: | Height: | Size: 22 KiB |
|
After Width: | Height: | Size: 3.9 KiB |
|
After Width: | Height: | Size: 3.6 KiB |
|
After Width: | Height: | Size: 52 KiB |
|
After Width: | Height: | Size: 20 KiB |
|
After Width: | Height: | Size: 44 KiB |
|
After Width: | Height: | Size: 2.8 KiB |
|
After Width: | Height: | Size: 3.8 KiB |
|
After Width: | Height: | Size: 4.9 KiB |
|
After Width: | Height: | Size: 3.4 KiB |
|
After Width: | Height: | Size: 5.2 KiB |
|
After Width: | Height: | Size: 4.6 KiB |
|
After Width: | Height: | Size: 6.8 KiB |
|
After Width: | Height: | Size: 34 KiB |
|
After Width: | Height: | Size: 2.8 KiB |
|
After Width: | Height: | Size: 44 KiB |
|
After Width: | Height: | Size: 7.6 KiB |
|
After Width: | Height: | Size: 72 KiB |
|
After Width: | Height: | Size: 6.7 KiB |
|
After Width: | Height: | Size: 4.3 KiB |
|
After Width: | Height: | Size: 4.5 KiB |
|
After Width: | Height: | Size: 6.8 KiB |
|
After Width: | Height: | Size: 4.7 KiB |
|
After Width: | Height: | Size: 3.7 KiB |
|
After Width: | Height: | Size: 78 KiB |
|
After Width: | Height: | Size: 2.7 KiB |
|
After Width: | Height: | Size: 3.6 KiB |
|
After Width: | Height: | Size: 23 KiB |
|
After Width: | Height: | Size: 23 KiB |
|
After Width: | Height: | Size: 3.5 KiB |
|
After Width: | Height: | Size: 3.9 KiB |
|
After Width: | Height: | Size: 2.8 KiB |
|
After Width: | Height: | Size: 17 KiB |
|
After Width: | Height: | Size: 6.1 KiB |
|
After Width: | Height: | Size: 38 KiB |
|
After Width: | Height: | Size: 3.9 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 4.0 KiB |
|
After Width: | Height: | Size: 4.1 KiB |
|
After Width: | Height: | Size: 4.9 KiB |
|
After Width: | Height: | Size: 26 KiB |
|
After Width: | Height: | Size: 4.2 KiB |
|
After Width: | Height: | Size: 33 KiB |
|
After Width: | Height: | Size: 33 KiB |
|
After Width: | Height: | Size: 5.5 KiB |
|
After Width: | Height: | Size: 3.7 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 4.8 KiB |
|
After Width: | Height: | Size: 15 KiB |
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 3.7 KiB |
|
After Width: | Height: | Size: 29 KiB |
|
After Width: | Height: | Size: 36 KiB |
|
After Width: | Height: | Size: 4.1 KiB |
|
After Width: | Height: | Size: 10 KiB |
|
After Width: | Height: | Size: 10 KiB |
|
After Width: | Height: | Size: 54 KiB |
|
After Width: | Height: | Size: 3.9 KiB |
|
After Width: | Height: | Size: 4.0 KiB |
|
After Width: | Height: | Size: 6.1 KiB |
|
After Width: | Height: | Size: 3.3 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 3.8 KiB |
|
After Width: | Height: | Size: 3.8 KiB |
|
After Width: | Height: | Size: 2.5 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 3.1 KiB |
|
After Width: | Height: | Size: 3.2 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 19 KiB |
|
After Width: | Height: | Size: 81 KiB |
|
After Width: | Height: | Size: 38 KiB |
|
After Width: | Height: | Size: 3.5 KiB |
|
After Width: | Height: | Size: 2.4 KiB |
|
After Width: | Height: | Size: 17 KiB |
|
After Width: | Height: | Size: 3.5 KiB |
|
After Width: | Height: | Size: 5.9 KiB |
|
After Width: | Height: | Size: 4.1 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 31 KiB |
|
After Width: | Height: | Size: 31 KiB |
|
After Width: | Height: | Size: 6.0 KiB |
|
After Width: | Height: | Size: 10 KiB |
|
After Width: | Height: | Size: 23 KiB |
|
After Width: | Height: | Size: 26 KiB |