@if ($data_item)
@foreach ($data_item as $item)
| {{ $item->group_name }} |
{{ $item->quantity }} |
{{ number_format($item->each_price) }} |
{{ number_format($item->price_overall) }} |
@if ($item->amount_discount != 0)
|
Diskon:({{ number_format($item->amount_discount) }})
|
@endif
@endforeach
@endif
@if ($data_service)
@foreach ($data_service as $service)
| {{ $service->item_name }} |
{{ $service->quantity }} |
{{ number_format($service->selling_price) }} |
{{ number_format($service->price_overall) }} |
@if ($service->amount_discount != 0)
|
Diskon:({{ number_format($service->amount_discount) }})
|
@endif
@endforeach
@endif
@if($data_petshop)
@foreach ($data_petshop as $petshop)
| {{ $petshop->item_name }} |
{{ $petshop->quantity }} |
{{ number_format($petshop->selling_price) }} |
{{ number_format($petshop->price_overall) }} |
@endforeach
@endif