/
home
/
sjslayjy
/
public_html
/
devlok
/
resources
/
views
/
dashboard
/
master
/
Upload File
HOME
<table id="dynamic-table" class="table table-striped table-bordered table-hover"> <thead> <tr> <th>S.No</th> <th>Master Rake</th> <th>Performed Action(s)</th> <th>Performed By</th> <th>Date</th> </tr> </thead> <tbody> @foreach ($history as $index => $log) <tr> <td>{{ $index + 1 }}</td> <td>{{ $log->master_rake_name }}</td> <td>{{ $log->message }}</td> <td>{{ $log->performed_by }}</td> <td>{{ $log->date }}</td> </tr> @endforeach </tbody> </table>