@extends('admin.layouts.app') @section('title', 'Purchase Invoice ') @section('content-heading')

Purchase Invoice

@endsection @section('content')

Item Summary of Invoice Order #{{$rowObj->invoice_no}}

@forelse($rowObj->itemlist as $item) @empty @endforelse
Product Price Quantity Total
{{ $item->item_name }} {{ $item->item_amount }} {{ $item->item_qty }} {{ $item->total }}
Subtotal {{$rowObj->subtotal}}
Discount {{$rowObj->discount}}
Tax {{$rowObj->tax}}
Grand Total {{$rowObj->grand_total}}
@endsection @section('extra-script') @endsection