/
home
/
sjslayjy
/
public_html
/
assets
/
storage
/
framework
/
views
/
Upload File
HOME
<table> <thead> <tr> <th>Document Type</th> <th>Document no.</th> <th>Document Date</th> <th>Buyer GST no.</th> <th>Buyer Legal Name</th> <th>Circle</th> <th>Add1</th> <th>Add2</th> <th>Buyer Location</th> <th>Buyer Pin Code</th> <th>Item Code</th> <th>Sl no.</th> <th>Product Description</th> <th>HSN Code</th> <th>Type</th> <th>Quantity</th> <th>Units</th> <th>Unit Price</th> <th>Gross Amount</th> <th>GST rate</th> <th>SGST</th> <th>CGST</th> <th>IGST</th> <th>Total Item</th> <th>Total Taxable Value</th> <th>SGST</th> <th>CGST</th> <th>IGST</th> <th>Total Invoice Value</th> </tr> </thead> <tbody> <?php $__currentLoopData = $stn_items; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $stn_item): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td><?php echo e($stn_item['invoice_type']); ?></td> <td><?php echo e($stn_item['invoice_no']); ?></td> <td><?php echo e($stn_item['stn_date']); ?></td> <td><?php echo e($stn_item['buyer_gst']); ?></td> <td><?php echo e($stn_item['buyer_name']); ?></td> <td><?php echo e($stn_item['circle']); ?></td> <td><?php echo e($stn_item['buyer_add']); ?></td> <td><?php echo e($stn_item['buyer_add1']); ?></td> <td><?php echo e($stn_item['buyer_location']); ?></td> <td><?php echo e($stn_item['buyer_pincode']); ?></td> <td><?php echo e($stn_item['spare_code']); ?></td> <td><?php echo e($key+1); ?></td> <td><?php echo e($stn_item['description']); ?></td> <td><?php echo e($stn_item['hsn']); ?></td> <td><?php echo e($stn_item['type']); ?></td> <td><?php echo e($stn_item['qty']); ?></td> <td><?php echo e($stn_item['uom']); ?></td> <td><?php echo e($stn_item['rate']); ?></td> <td><?php echo e($stn_item['gross_total']); ?></td> <td><?php echo e($stn_item['gst_slab_rates']); ?></td> <td><?php echo e($stn_item['cgst']); ?></td> <td><?php echo e($stn_item['sgst']); ?></td> <td><?php echo e($stn_item['igst']); ?></td> <td><?php echo e($stn_item['total_item']); ?></td> <td><?php echo e($stn_item['total_taxable_value']); ?></td> <?php if($stn_item['cgst'] != ''): ?> <td><?php echo e($stn_item['total_tax']/2); ?></td> <td><?php echo e($stn_item['total_tax']/2); ?></td> <td></td> <?php else: ?> <td></td> <td></td> <td><?php echo e($stn_item['total_tax']); ?></td> <?php endif; ?> <td><?php echo e($stn_item['total_taxable_value']+$stn_item['total_tax']); ?></td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table><?php /**PATH /var/www/assets/resources/views/exports/stn-gst-format.blade.php ENDPATH**/ ?>