@extends('layouts.print')
@section('pageSize','A4')
@section('content')
@foreach($data as $k => $v)
@php
$slno = 1
@endphp
عميل / Customer : {{$v['customer_details']['name']}}
رقم الفاتورة / Invoice No : {{$v['bill_no']}}
تاريخ / Date : {{$v['bill_date']}}
@foreach($v['sold_items'] as $index=>$vvv)
@if ($index==0)
SL1.No رقم |
Description |
Qty |
Price |
Total |
@foreach($v['sold_items'] as $vv)
@include('partials.salesinvoice_items')
@php
$slno++
@endphp
@endforeach
@endif
@endforeach
@endforeach
@php
$taxable = $v['net_total'] -$v['tax'];
@endphp