{{\App::setLocale(Session::get('locale'))}} @extends('user.layout.app') @section('title', trans('Invoice Details')) @section('content')

Invoice Order #{{$rowObj->invoice_no}}

Item Summary

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