@if($this->bill_group->isNotEmpty())
@php
$totalAmount = 0;
foreach($selected_bill_items as $bill_item) {
$totalAmount += $bill_item['amount'];
}
@endphp
@endif
Bill Item |
Amount |
Action |
@if($this->bill_group_data->isNotEmpty())
@foreach($bill_group_data as $data)
{{$data->name}} |
{{number_format($data->amount, 2, '.', ',')}} |
|
@endforeach
@endif
@if($this->selected_bill_items != null)
Preview
@foreach($this->selected_bill_items as $bill_item)
{{ $bill_item['item'] }} ({{$bill_item['item_code']}}) |
0.00 |
|
@endforeach
@endif