forked from TFMM/silent-auction
146 lines
4.1 KiB
PHP
146 lines
4.1 KiB
PHP
<?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',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
];
|