Return Policy:
- All returns/exchanges must be made within 30 days of the original purchase date or a 15%
restocking fee will be applied.
- Products must be in the original packaging and in the same condition as when purchased.
- Glazing Supplies/Tools are final sales with no exceptions.
- There are no refunds issued for returned items. Only store credit will be applied to your
account for future purchases.
- Refunds for returned products with volume discounts are based on regular prices if the
return
quantity breaks the discount rule.
- Special Orders are not returnable.
- Purchasing multiple finishes of the same product with our volume discount disqualifies those items from being returned.
|
Subtotal |
${{ number_format($order->subtotal, 2) }} |
Sales Tax |
${{ number_format($order->tax, 2) }} |
Freight |
${{ number_format($order->cost_delivery, 2) }} |
Invoice Total |
${{ number_format($order->total_price, 2) }} |
|
@if($order->payment_type_id == 3)
Payment method |
{{ $order->getCardTypeDescription() }} {{ $order->getCardNumber(8) }}
|
@elseif(in_array($order->payment_type_id, [1,6]))
Payment method |
{{$order->paymentType->name}}
|
@endif
@if($order->bo_balance_used > 0)
Used Credit |
${{ number_format($order->bo_balance_used, 2) }} |
@endif
@if($order->payment_type_id != 7 && $order->payment_type_id != 8)
Total Paid |
${{ number_format($order->total_price - $order->bo_balance_used, 2) }} |
@endif
|