|
| NO |
URAIAN |
JUMLAH |
@php
$counter = 0;
$grandTotal = 0;
@endphp
@foreach ($data->costs as $i => $item)
@php
$item = (object)$item;
@endphp
@if ($i > 1 && $i <= 3 && $item->is_active)
|
@if ($counter == 0)
{{++$counter}}.
@endif
|
| {{$item->label}} |
: |
Rp |
{{number_format($item->cost, 2, ",", ".")}} |
X |
{{$item->qty}} |
hari |
@if ($item->percentage < 100) X @endif |
{{$item->percentage < 100 ? $item->percentage.'%' : ''}} |
|
@php
$total = $item->cost*$item->qty*$item->percentage/100;
$grandTotal += $total;
@endphp
Rp. {{number_format($total, 2, ",", ".")}}
|
@endif
@endforeach
@if (count($data->costs) > 4)
|
2.
|
Transport:
|
|
@foreach ($data->costs as $i => $item)
@php
$item = (object)$item;
@endphp
@if ($i > 3 && $item->is_active)
|
| - |
{{$item->label}}
|
: |
Rp |
{{number_format($item->cost, 2, ",", ".")}} |
|
@php
$total = $item->cost*$item->qty*$item->percentage/100;
$grandTotal += $total;
@endphp
Rp. {{number_format($total, 2, ",", ".")}}
|
@endif
@endforeach
@endif
|
JUMLAH
|
Rp.{{number_format($grandTotal, 2, ",", ".")}}
|
|