/
home
/
sjslayjy
/
public_html
/
scm
/
resources
/
views
/
dashboard
/
po
/
Upload File
HOME
<table id="dynamic-table" class="table table-striped table-bordered table-hover"> <thead> <tr> <th>S.No</th> <th>Operation</th> <th>Name</th> <th>Remark</th> <th>Date</th> </tr> </thead> <tbody> @foreach($po_history_data as $po=>$po_history) <tr> <td>{{$po+1}}</td> <td>{{$po_history->message}}</td> <td>{{$po_history->name}}</td> <td>{{$po_history->remark}}</td> <td>{{$po_history->created_at}}</td> </tr> @endforeach </tbody> </table>