@extends('layouts.print') @section('pageSize', 'A4') @section('content') @foreach ($data as $k => $v) @php $slno = 1; @endphp
TAX INVOICE/فاتورة الضريبة
عميل/Customer: {{ $v['customer_details']['name'] }}
رقم الضريبي/VATNo: {{ $v['customer_details']['gstin'] }}
رقم الفاتورة/Invoice No: {{ $v['bill_no'] }}
تاريخ/Date: {{ $v['bill_date'] }}
@foreach ($v['sold_items'] as $index => $vvv) @if ($index == 0)
@foreach ($v['sold_items'] as $vv) @php $slno++; @endphp @endforeach
SL.No
رقم
Description
اسم المنتج
Qty
كمية
Price
سعر
Total
المجموع
{{ $slno }} {{ $vv['remarks'] }} {{ $vv['quantity'] }} {{ $vv['price_per_quantity'] }} {{ $vv['gtotal'] }}
@endif @endforeach
المبلغ الإجمالي/Taxable: {{ $v['taxable_amt'] }}
ضريبة/Tax: {{ $v['tax'] }}
المجموع الصافي/Net Total: {{ $v['net_total'] }}
{!! QrCode::size(120)->generate($v['qrcode']) !!}
 
@endforeach