/
home
/
sjslayjy
/
public_html
/
assets
/
resources
/
views
/
admin
/
stock
/
Upload File
HOME
@extends('layout.master') @push('plugin-styles') <!-- {!! Html::style('/assets/plugins/plugin.css') !!} --> {!! Html::style('//cdn.datatables.net/1.10.23/css/jquery.dataTables.min.css') !!} @endpush @section('content') <div class="row"> <div class="col-lg-12 grid-margin"> <div class="card"> <div class="card-body"> <h4 class="card-title">List Of Goods Receipt Notes </h4> <div class="table-responsive"> <table class="table table-striped myTable"> <thead> <tr> <th> GR No </th> <th> Ware House</th> <th> Reference No </th> <th> Invoice No </th> <th> Invoice Date </th> <th style="float: right;"> Amount </th> <th> Satus </th> <th> action </th> </tr> </thead> <tbody> @foreach($all_grn as $grn) <tr> <td class="font-weight-medium">{{$grn->grn_no}}</td> <td class="font-weight-medium">{{$grn->warehouse}}</td> <td>{{$grn->reference_number}}</td> <td>{{$grn->invoice_number}}</td> <td>{{$grn->invoice_date}}</td> <td style="float: right;">{{$grn->grand_total}} Rs</td> <td> <label class="badge badge-danger"></label> </td> <td><a href="{{url('admin/view-grn/'.$grn->id)}}">View</a> | <a target="_blank" href="{{url('admin/print-grn/'.$grn->id)}}">Print Note</a></td> </tr> @endforeach </tbody> </table> </div> </div> </div> </div> </div> @endsection @push('plugin-scripts') {!! Html::script('/assets/plugins/chartjs/chart.min.js') !!} {!! Html::script('/assets/plugins/jquery-sparkline/jquery.sparkline.min.js') !!} @endpush @push('custom-scripts') {!! Html::script('/assets/js/dashboard.js') !!} {!! Html::script('//cdn.datatables.net/1.10.23/js/jquery.dataTables.min.js') !!} <script type="text/javascript"> $(document).ready( function () { var myTable = $('.myTable').dataTable(); } ); </script> @endpush