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