├── app
├── Resources
│ └── views
│ │ ├── default
│ │ ├── payment_callback.html.twig
│ │ ├── index.html.twig
│ │ ├── order_pay.html.twig
│ │ └── checkout.html.twig
│ │ ├── components
│ │ ├── products-back.twig
│ │ └── product-detail.twig
│ │ ├── shoporder
│ │ ├── new.html.twig
│ │ ├── index.html.twig
│ │ ├── show.html.twig
│ │ └── edit.html.twig
│ │ ├── product
│ │ ├── show.html.twig
│ │ ├── new.html.twig
│ │ ├── edit.html.twig
│ │ └── index.html.twig
│ │ └── base.html.twig
├── AppCache.php
├── .htaccess
├── config
│ ├── routing.yml
│ ├── config_test.yml
│ ├── routing_dev.yml
│ ├── parameters.yml.dist
│ ├── config_prod.yml
│ ├── security.yml
│ ├── config_dev.yml
│ ├── services.yml
│ └── config.yml
└── AppKernel.php
├── web
├── favicon.ico
├── apple-touch-icon.png
├── assets
│ ├── img
│ │ ├── favicon.ico
│ │ ├── bitcoin-icon.png
│ │ └── demo-checkout.jpg
│ ├── audio
│ │ └── smw_coin.wav
│ ├── css
│ │ └── style.css
│ └── js
│ │ ├── material.min.js
│ │ ├── material-dashboard.js
│ │ ├── bootstrap-notify.js
│ │ └── bootstrap.min.js
├── robots.txt
├── app.php
├── app_dev.php
├── .htaccess
└── config.php
├── src
├── .htaccess
└── AppBundle
│ ├── AppBundle.php
│ ├── Repository
│ ├── ProductRepository.php
│ ├── ShopOrderRepository.php
│ └── PriceOptionRepository.php
│ ├── Service
│ └── BlockchainDotInfoService.php
│ ├── Form
│ ├── ProductType.php
│ └── ShopOrderType.php
│ ├── Entity
│ ├── PriceOption.php
│ ├── Product.php
│ └── ShopOrder.php
│ ├── Tests
│ └── Controller
│ │ ├── ProductControllerTest.php
│ │ └── ShopOrderControllerTest.php
│ └── Controller
│ ├── ProductController.php
│ ├── ShopOrderController.php
│ └── DefaultController.php
├── .gitignore
├── tests
└── AppBundle
│ └── Controller
│ └── DefaultControllerTest.php
├── bin
├── console
└── symfony_requirements
├── phpunit.xml.dist
├── LICENSE
├── composer.json
└── README.md
/app/Resources/views/default/payment_callback.html.twig:
--------------------------------------------------------------------------------
1 | *ok*
--------------------------------------------------------------------------------
/web/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elvismdev/Bitcoin-Simple-Shop/HEAD/web/favicon.ico
--------------------------------------------------------------------------------
/web/apple-touch-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elvismdev/Bitcoin-Simple-Shop/HEAD/web/apple-touch-icon.png
--------------------------------------------------------------------------------
/web/assets/img/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elvismdev/Bitcoin-Simple-Shop/HEAD/web/assets/img/favicon.ico
--------------------------------------------------------------------------------
/web/assets/audio/smw_coin.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elvismdev/Bitcoin-Simple-Shop/HEAD/web/assets/audio/smw_coin.wav
--------------------------------------------------------------------------------
/web/assets/img/bitcoin-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elvismdev/Bitcoin-Simple-Shop/HEAD/web/assets/img/bitcoin-icon.png
--------------------------------------------------------------------------------
/web/assets/img/demo-checkout.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elvismdev/Bitcoin-Simple-Shop/HEAD/web/assets/img/demo-checkout.jpg
--------------------------------------------------------------------------------
/app/AppCache.php:
--------------------------------------------------------------------------------
1 | keyboard_arrow_leftBack to the products list
--------------------------------------------------------------------------------
/app/.htaccess:
--------------------------------------------------------------------------------
1 |
Here is a subtitle for this table
#} 10 || ID | 16 |Title | 17 |Price | 18 |Updated At | 19 |Created At | 20 |Actions | 21 |
|---|---|---|---|---|---|
| {{ product.id }} | 27 |{{ product.title }} | 28 |{{ product.price }} | 29 |{% if product.updatedAt %}{{ product.updatedAt|date('Y-m-d H:i:s') }}{% endif %} | 30 |{% if product.createdAt %}{{ product.createdAt|date('Y-m-d H:i:s') }}{% endif %} | 31 |
32 |
|
41 |
Here is a subtitle for this table
#} 10 || Order ID | 16 |Status | 17 |Client Name | 19 |Product | 20 |Total BTC | 21 |Total USD | 22 |Paid | 23 |Updated At | 24 |Created At | 25 |Actions | 26 ||
|---|---|---|---|---|---|---|---|---|---|---|
| {{ shopOrder.id }} | 32 |{{ shopOrder.orderStatus == 'pending_payment' ? 'Pending Payment' : 'Completed' }} | 33 |{{ shopOrder.email }} | 34 |{{ shopOrder.name }} {{ shopOrder.lastName }} | 35 |{{ shopOrder.product.title }} | 36 |{{ shopOrder.orderTotalBtc }} | 37 |{{ shopOrder.orderTotalUsd }} | 38 |{% if shopOrder.orderPaid %}Yes{% else %}No{% endif %} | 39 |{% if shopOrder.createdAt %}{{ shopOrder.createdAt|date('Y-m-d H:i:s') }}{% endif %} | 40 |{% if shopOrder.updatedAt %}{{ shopOrder.updatedAt|date('Y-m-d H:i:s') }}{% endif %} | 41 |
42 |
|
48 |
Send payment to the below address to complete your order.
39 | 40 |Or scan QR Code with your mobile device.
50 |