/
home
/
sjslayjy
/
public_html
/
assets
/
resources
/
views
/
exports
/
Upload File
HOME
<table> <thead> <tr> <th colspan="16" style="text-align:center;font-size:20px;">Goods Receiving Notes</th> <th></th> </tr> <tr> <th>GRN</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> @foreach($grns as $grn) <tr> <td>{{$grn->grn_no}}</td> <td>{{$grn->grn_date}}</td> <td>{{$grn->reference_number}}</td> <td>{{$grn->item_code}}</td> <td>{{$grn->item_discription}}</td> <td>{{$grn->supplier_name}}</td> <td>{{$grn->invoice_number}}</td> <td>{{$grn->invoice_date}}</td> <td>{{$grn->quantity}}</td> <td>{{$grn->rate}}</td> <td>{{$grn->amount}}</td> <td>{{$grn->tax_amount}}</td> <!-- <td>{{$grn->freightCharges}}</td> --> @if($grn_no != $grn->grn_no) <td>{{$grn->freightCharges}}</td> @else <td></td> @endif @php $grn_no = $grn->grn_no; @endphp <td></td> <td>{{$grn->warehouse}}</td> <!-- <td></td> --> <td>{{$grn->transporter_details}}</td> <td>{{$grn->eway_bill_no}}</td> <!-- <td></td> --> </tr> @endforeach </tbody> </table>