/
home
/
sjslayjy
/
public_html
/
assets
/
storage
/
framework
/
views
/
Upload File
HOME
<table> <thead> <tr> <th colspan="16" style="text-align:center;font-size:20px;">Goods Receipt Notes</th> <th></th> </tr> <tr> <th>GRN No</th> <th>GRN Date</th> <th>Ref DocNo</th> <th>Item Code</th> <th>Item Description</th> <th>Supplier Name</th> <th>Supplier Invoice Number</th> <th>Supplier Invoice Date</th> <th>Delivery Qty</th> <th>Rate</th> <th>Amount<br>Excluding Tax</th> <th>Tax Amount</th> <th>Fright Amount</th> <th>Sup Code</th> <th>Ware House </th> <!-- <th>PKTS</th> --> <th>Transporter Details</th> <th>E Way Bill</th> <!-- <th>Vehicle No</th> --> </tr> </thead> <tbody> <?php $__currentLoopData = $mrns; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $mrn): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <?php $supplier_name = ''; $supplier_code = ''; if(array_key_exists($mrn->reference_number, $all_suppliers)) { $supplier_name = $all_suppliers[$mrn->reference_number]['vendor_name']; $supplier_code = $all_suppliers[$mrn->reference_number]['vendor_code']; } ?> <tr> <td><?php echo e($mrn->grn_no); ?></td> <td><?php echo e($mrn->grn_date); ?></td> <td><?php echo e($mrn->reference_number); ?></td> <td><?php echo e($mrn->item_code); ?></td> <td><?php echo e($mrn->item_discription); ?></td> <td><?php echo e($supplier_name); ?></td> <td><?php echo e($mrn->invoice_number); ?></td> <td><?php echo e($mrn->invoice_date); ?></td> <td><?php echo e($mrn->quantity); ?></td> <td><?php echo e($mrn->rate); ?></td> <td><?php echo e($mrn->amount); ?></td> <td><?php echo e($mrn->tax_amount); ?></td> <!-- <td><?php echo e($mrn->freightCharges); ?></td> --> <?php if($mrn_no != $mrn->grn_no): ?> <td><?php echo e($mrn->freightCharges); ?></td> <?php else: ?> <td></td> <?php endif; ?> <?php $mrn_no = $mrn->grn_no; ?> <td><?php echo e($supplier_code); ?></td> <td><?php echo e($mrn->warehouse); ?></td> <!-- <td></td> --> <td><?php echo e($mrn->transporter_details); ?></td> <td><?php echo e($mrn->eway_bill_no); ?></td> <!-- <td></td> --> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table><?php /**PATH /var/www/assets/resources/views/exports/mrns.blade.php ENDPATH**/ ?>