{{-- {{ $name }} --}}
{{--
Invoice Table
{{-- {{ $name }}
--}}
{{-- {!! $name !!}
--}}
{{--
{{ $company }}
{!! $greeting !!}
| No |
Plant |
Total Number Of Invoice |
Scanned Number Of Invoice |
@foreach($tableData as $row) --}}
{{--
| {{ $row['no'] }} |
{{ $row['plant'] }} |
{{ $row['totalInvoice'] }} |
{{ $row['scannedInvoice'] }} |
--}}
{{--
| {{ $row['no'] }} |
{{ $row['plant'] }} |
{{ $row['totalInvoice'] }} |
{{ $row['scannedInvoice'] }} |
@endforeach
{!! $wishes !!}
--}}
Invoice Tables
{{ $company }}
{!! $greeting !!}
{{-- Serial Invoice Table --}}
@if(!empty($serialTableData))
Serial Invoice
| No |
Plant |
Total Number of Invoice |
Scanned Number of Invoice |
@foreach($serialTableData as $row)
| {{ $row['no'] }} |
{{ $row['plant'] }} |
{{ $row['totalInvoice'] }} |
{{ $row['scannedInvoice'] }} |
@endforeach
@endif
{{-- Material Invoice Table --}}
@if(!empty($materialTableData))
Material Invoice
| No |
Plant |
Total Number of Invoice |
Scanned Number of Invoice |
@foreach($materialTableData as $row)
| {{ $row['no'] }} |
{{ $row['plant'] }} |
{{ $row['totalInvoice'] }} |
{{ $row['scannedInvoice'] }} |
@endforeach
@endif
{{-- Bundle Invoice Table --}}
@if(!empty($bundleTableData))
Bundle Invoice
| No |
Plant |
Total Number of Invoice |
Scanned Number of Invoice |
@foreach($bundleTableData as $row)
| {{ $row['no'] }} |
{{ $row['plant'] }} |
{{ $row['totalInvoice'] }} |
{{ $row['scannedInvoice'] }} |
@endforeach
@endif
{!! $wishes !!}