This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "private": true, | |
| "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" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace App\Http\Middleware; | |
| use Closure; | |
| class Cors | |
| { | |
| /** | |
| * Handle an incoming request. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- Tooltip example --> | |
| <button type="button" class="btn btn-default" | |
| data-toggle="tooltip" | |
| data-placement="top" | |
| title="Tooltip on top">Tooltip on top</button> | |
| <!-- The following code will enable all tooltips in the document --> | |
| <script> | |
| $(document).ready(function(){ | |
| $('[data-toggle="tooltip"]').tooltip(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- TRANSLATED BY: Sebastian Stoll from www.justonline.dk --> | |
| {% if billing_address.name %} | |
| <p>Hej, {{ billing_address.name }}!</p> | |
| {% endif %} | |
| <p>De følgende, afsendte varer {{ name }} er blevet opdateret med ny leveringsstatus:</p> | |
| <ul style="list-style-type:none"> | |
| {% for line in fulfillment.fulfillment_line_items %}<li> | |
| <img src="{{ line.line_item | img_url: 'small' }}" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- TRANSLATED BY: Sebastian Stoll from www.justonline.dk --> | |
| {% if billing_address.name %} | |
| <p>Hej, {{ billing_address.name }}!</p> | |
| <p></p> | |
| {% endif %} | |
| <p>{% if fulfillment.item_count == item_count %}Alle{% elsif fulfillment_status == 'fulfilled' %}De seneste{% else %}Nogle af{% endif %} varerne fra ordren {{ name }} er nu blevet afsendt:</p> | |
| <p>{% for line in fulfillment.fulfillment_line_items %}<img src="{{ line.line_item | img_url: 'small' }}" />{{ line.quantity }} x {{ line.line_item.title }}<br> | |
| {% endfor %}</p> | |
| <p>{% if requires_shipping %}De er afsendt {% if fulfillment.tracking_company %}via {{ fulfillment.tracking_company }} {% endif %}til den følgende adresse:</p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% if customer.name %} | |
| <p>Hej, {{ customer.name }}!</p> | |
| <p></p> | |
| {% endif %} | |
| <p>{{ shop_name }} har refunderet din ordre ({{ name }}) {% if amount > 0 %}til i alt {{ amount | money_with_currency }}{% endif %}{% if refund_line_items.size > 0 %} for:</p> | |
| <p> | |
| {% for line in refund_line_items %} | |
| {{ line.quantity }} x {{ line.line_item.title }}</p> | |
| {% endfor %} | |
| {% else %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- TRANSLATED BY: Sebastian Stoll from www.justonline.dk --> | |
| <p>Tak for din bestilling hos {{ shop_name }}!</p> | |
| <p>Denne e-mail er en ordrebekræftelse, som indikerer at vi har modtaget din ordre.</p> | |
| <p>Dato: {{ date | date: "%m/%d/%Y" }}</p> | |
| {% if requires_shipping and shipping_address %} | |
| <p><b>Leveringsadresse:</b><br /> | |
| {{ shipping_address.name }}<br /> | |
| {{ shipping_address.street }}<br /> | |
| {{ shipping_address.city }}<br /> | |
| {{ shipping_address.province }} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- TRANSLATED BY: Sebastian Stoll from www.justonline.dk --> | |
| {% if billing_address.name %} | |
| <p>Hej, {{ billing_address.name }}!</p> | |
| <p></p> | |
| {% endif %} | |
| <p>Din ordre {{ name }} blev afvist {% case cancel_reason %}{% when 'customer' %}efter dit ønske.{% when 'inventory' %}da vi desværre ikke har lager nok, til at gennemføre din ordre.{% when 'fraud' %}da din ordre blev markeret som svigagtig.{% when 'other' %}på grund af uforudsete omstændigheder.{% endcase %}</p> | |
| <p></p> | |
| <p>{% if financial_status == 'voided' %}Din betaling er blevet annulleret.{% elsif financial_status == 'credited' %}Din betaling er blevet refunderet.{% endif %}</p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- TRANSLATED BY: Sebastian Stoll from www.justonline.dk --> | |
| <p>Hej, {{ shop_name }}!</p> | |
| <p></p> | |
| <p>{% if customer.name %}{{ customer.name }}{% else %}En person{% endif %} foretog en bestilling i dag, {{ date | date: "%b %d %I:%M%p" }}:</p> | |
| <p></p> | |
| <ul> | |
| {% for line in line_items %} | |
| <li> | |
| <img src="{{ line | img_url: 'thumb' }}" /> {{ line.quantity }}x {{ line.title }} - {{ line.price | money }} pr. stk. | |
| </li> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- TRANSLATED BY: Sebastian Stoll from www.justonline.dk --> | |
| <div style="font-family:Sans-Serif;font-size:12px;width:100%;margin:5px;"> | |
| <p>Hej, {% if gift_card.customer %} {{ gift_card.customer.first_name }}{% endif %}!</p> | |
| <p>Her er dit <a href="{{ shop.url }}">{{ shop.name }}</a> gavekort til en værdi á {{ gift_card.initial_value | money_without_trailing_zeros }}.</p> | |
| {% if gift_card.initial_value != gift_card.balance %} | |
| <p>Du har {{ gift_card.balance | money_without_trailing_zeros }} tilbage på dette gavekort.</p> | |
| {% endif %} |