| Server IP : 139.59.63.204 / Your IP : 216.73.217.62 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ubuntu-s-1vcpu-1gb-blr1-01 6.8.0-110-generic #110-Ubuntu SMP PREEMPT_DYNAMIC Thu Mar 19 15:09:20 UTC 2026 x86_64 User : root ( 0) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/billing/storage/framework/views/ |
Upload File : |
<table>
<thead>
<tr>
<th>Invoice Id</th>
<th>Customer Name</th>
<th>Product Name</th>
<th>Price</th>
<th>Qty</th>
<th>Invoice Date</th>
<th>Shipping Address</th>
<th>Shipping City</th>
<th>Shipping State</th>
<th>Shipping Country</th>
<th>Shipping Pincode</th>
<th>Billing Address</th>
<th>Billing City</th>
<th>Billing State</th>
<th>Billing Country</th>
<th>Billing Pincode</th>
</tr>
</thead>
<tbody>
<?php $gst = auth()->user()->gst_percent;?>
<?php $__empty_1 = true; $__currentLoopData = $invoice; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $in): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); $__empty_1 = false; ?>
<?php $__empty_2 = true; $__currentLoopData = $in->lineItem; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $item): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); $__empty_2 = false; ?>
<tr>
<td>#<?php echo e($in->id); ?></td>
<td><?php echo e($in->customers->firstname.' '.$in->customers->lastname); ?></td>
<td><?php echo e($item->product->name); ?></td>
<td><?php echo e($item->price); ?></td>
<td><?php echo e($item->qty); ?></td>
<td><?php echo e($item->created_at->format('M d Y')); ?></td>
<td><?php echo e($in->shipping_address); ?></td>
<td><?php echo e($in->shipping_city); ?></td>
<td><?php echo e($in->shipping_state); ?></td>
<td><?php echo e($in->shipping_country); ?></td>
<td><?php echo e($in->shipping_pin); ?></td>
<td><?php echo e($in->billing_address); ?></td>
<td><?php echo e($in->billing_city); ?></td>
<td><?php echo e($in->billing_state); ?></td>
<td><?php echo e($in->billing_country); ?></td>
<td><?php echo e($in->billing_pin); ?></td>
</tr>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); if ($__empty_2): ?>
<?php endif; ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); if ($__empty_1): ?>
<?php endif; ?>
</tbody>
</table><?php /**PATH C:\wamp64\www\test\resources\views/report/export_report.blade.php ENDPATH**/ ?>