Sindbad~EG File Manager
<div class="order-summary">
<div class="d-flex justify-content-between mt-2">
<span>{{ translate('Subtotal') }} ({{$order->unit_price}} x {{$order->quantity}})</span>
<span>{{ format_price($order->unit_price * $order->quantity) }} </span>
</div>
@if(!is_numeric($order->gst_amount))
<div class="d-flex justify-content-between mt-2">
<span>{{ translate('Vat & Tax') }}</span>
<span>{{ format_price($order->tax) }}</span>
</div>
@endif
<div class="d-flex justify-content-between mt-2">
<span>{{ translate('Shipping Cost') }}</span>
<span>{{ format_price($order->shipping_cost) }}</span>
</div>
<div class="d-flex justify-content-between mt-2">
<span>{{ translate('Product Discount') }}</span>
<span>{{ format_price($order->product_discount) }}</span>
</div>
@if($order->is_coupon_applied)
<div class="d-flex justify-content-between mt-2">
<span>{{ translate('Coupon Discount') }}</span>
<span>{{ format_price($order->coupon_discount) }}</span>
</div>
@endif
@if(is_numeric($order->gst_amount))
@if($order->address_id)
@if(preorder_same_state_shipping($order))
<div class="d-flex justify-content-between mt-2">
<span>{{ translate('CGST') }}</span>
<span>{{ format_price($order->gst_amount/2) }}</span>
</div>
<div class="d-flex justify-content-between mt-2">
<span>{{ translate('SGST') }}</span>
<span>{{ format_price($order->gst_amount/2) }}</span>
</div>
@else
<div class="d-flex justify-content-between mt-2">
<span>{{ translate('IGST') }}</span>
<span>{{ format_price($order->gst_amount) }}</span>
</div>
@endif
@else
<div class="d-flex justify-content-between mt-2">
<span>{{ translate('GST') }}</span>
<span>{{ format_price($order->gst_amount) }}</span>
</div>
@endif
@endif
@if( $order->prepayment !== null )
<div class="d-flex justify-content-between mt-2">
<span>{{ translate('Prepayment') }}</span>
<span>{{ format_price($order->prepayment) }}</span>
</div>
<div class="d-flex justify-content-between mt-2">
<span>{{ translate($order->final_order_status !=2 ? 'Remaining' : 'Final Payment') }}</span>
<span>{{ format_price($order->grand_total - $order->prepayment) }}</span>
</div>
@endif
<div class="d-flex justify-content-between mt-2 fw-700">
<span class="fw-bold ">{{ translate('TOTAL') }}</span>
<span class="total text-orange fs-16">{{ format_price($order->grand_total) }}</span>
</div>
</div>
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists