|
{{ now()->format('F d, Y'); }} |
@if($type == "Preorder") Preorder Invoice @elseif($type == "Remaining") Remaining Balance @elseif($type == "Final") Final Payment @elseif($type == "Refund") Refund Invoice @endif |
|
{{ $user->name ? $user->name : ''}} {{ $user->email }} |
USD - U.S. dollar |
| DESCRIPTION | QTY | ORIGINAL PRICE |
|---|---|---|
@if($order->item == "QBio Elixir")
QBio Elixir
@elseif($order->item == "QBio Pro")
QBio Pro
@elseif($order->item == "QBio Gro")
QBio Gro
@endif
|
1 | @if($order->item == "QBio Elixir") ${{config('variables.elixir_price')}} @elseif($order->item == "QBio Pro") ${{config('variables.pro_price')}} @elseif($order->item == "QBio Gro") ${{config('variables.gro_price')}} @endif |
| Preorder Price | ${{$order->total_amount}} | |
| @if($type == "Preorder") Paid Today @elseif($type == "Remaining") Paid Before @elseif($type == "Final") Paid @elseif($type == "Refund") Paid Before @endif | ${{$order->amount}} | |
|
@if($type == "Preorder" || $type == "Remaining")
Remaining Balance Due Before Shipping @elseif($type == "Final") Paid today @elseif($type == "Refund") Refunded Today @endif |
@if($type == "Refund") ${{$order->amount}} @else ${{$order->total_amount - $order->amount}} @endif |