Search
 
SCRIPT & CODE EXAMPLE
 

PHP

tackel discount in javascript

@if($invoice->promo != null)
  <div class="d-flex keep-print-font">
  <p class="text-left h4 fw-700 keep-print-font mr-4">
  Promo Discount
  </p>
  <p class="text-left h4 fw-700 keep-print-font">
{{ number_format($invoice->promo->amount,3) }} KD
  @if($invoice->promo->type == "percentage")
  @php
  $discount_amount += ($sub_total+$sum_addon)/100*$invoice->promo->amount;
@endphp
  @else
  @php
  $discount_amount += $invoice->promo->amount ;
@endphp
  @endif
  </p>
  </div>
  @else
  <div class="d-flex keep-print-font">
  <p class="text-left h4 fw-700 keep-print-font mr-4">
  Discount
  </p>
  <p class="text-left h4 fw-700 keep-print-font">
{{ number_format($discount_amount,3) }} KD
{{-- {{ number_format($sum_addon,3) ?? '' }} KD --}}
</p>
  </div>
  @endif
Comment

PREVIOUS NEXT
Code Example
Php :: 3. Write a php script function to get the data type and the value of the variable $x = true. 
Php :: change php version 
Php :: switch php version ubuntu 
Java :: minecraft bedrock file location 
Java :: Cannot resolve class android.support.design.widget.CoordinatorLayout 
Java :: how to change font size in JLabel 
Java :: round jframe corners in java 
Java :: how to see list of java of versions in mac 
Java :: import javax.validation.valid error 
Java :: lombok maven dependency 
Java :: jcenter is at end of life 
Java :: java initialize list with values 
Java :: textview set drawable right programmatically 
Java :: java reflection get field value 
Java :: add retrofit dependency android 
Java :: bukkit inventory set name 
Java :: debug keystore 
Java :: random.choice in java 
Java :: How can I put a parameter into a localized string in Android? 
Java :: spring annotations xml configuration 
Java :: register command spigot 
Java :: listview refresh android adapter 
Java :: How to connect java class file to xml file 
Java :: how to install java runtime environment on centos 7 
Java :: libgdx move camera with touch 
Java :: java read last line of file 
Java :: convert object to map scala 
Java :: java font 
Java :: java int to octal 
Java :: get sha key android 
ADD CONTENT
Topic
Content
Source link
Name
9+7 =