@if($item)
@foreach($item as $tid)
@if( isset( $tid->appointment_type ) )
|
|
{{ $tid->appointment_type->code }} |
{{ number_format($tid->app_cost,2) }} |
{{$tid->item_qty ?? '-'}} |
{{ number_format($total,2)}}
|
|
@endif
@endforeach
@endif
@if($product)
@foreach($product as $prod)
|
|
{{$prod->product_iteams->product_code}} |
{{number_format($prod->product_cost,2)}} |
{{$prod->deduct_quantity}} |
{{number_format(($prod->deduct_quantity * $prod->product_cost) , 2)}} |
|
@endforeach
@endif
@if($invioceproduct)
@foreach($invioceproduct as $prod)
|
|
{{$prod->notes_product_name->product_code}} |
{{number_format($prod->price,2)}} |
{{$prod->quantity}} |
{{number_format(($prod->quantity * $prod->price) , 2)}} |
|
@endforeach
@endif