/
home
/
sjslayjy
/
public_html
/
tabson
/
resources
/
views
/
dashboard
/
production-order
/
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($production_order_history_data as $prod=>$prod_history) <tr> <td>{{$prod+1}}</td> <td>{{$prod_history->message}}</td> <td>{{$prod_history->name}}</td> <td>{{$prod_history->remark}}</td> <td>{{$prod_history->created_at}}</td> </tr> @endforeach </tbody> </table>