@section('title','Sales Invoice report') @extends('layouts.master') @section('style') {{-- {{Html::style('assets/public_css/index.css')}} --}} @endsection @section('content')
| {{trans('label.SL')}} | {{trans('label.Order Id')}} | {{trans('label.Gross Amount')}} | {{trans('label.Payment Amount')}} | {{trans('label.Due Amount')}} | {{trans('label.Action')}} |
|---|---|---|---|---|---|
| {{$loop->iteration}} | {{$invoice->id}} | {{number_format(($invoice->payment_amount ?? 0),2)}} | {{number_format(($invoice->receive_amount_from_custome ?? 0),2)}} | {{number_format(($invoice->due_amount ?? 0),2)}} | {{trans('label.view')}} |