/
home
/
sjslayjy
/
public_html
/
assets
/
resources
/
views
/
exports
/
Upload File
HOME
<table> <thead> <tr> <th>warehouse</th> <th>engineer_id</th> <th>item_type</th> <th>qty</th> <th>spare_code</th> <th>uom</th> <th>type</th> <th>description</th> <th>StaffName</th> <th>lot_no</th> <th>rate</th> </tr> </thead> <tbody> @foreach($stocks as $key=>$stock) <tr> <td>{{ $stock->warehouse }}</td> <td>{{ $stock->engineer_id }}</td> <td>{{ $stock->item_type }}</td> <td>{{ $stock->qty }}</td> <td>{{ $stock->spare_code }}</td> <td>{{ $stock->uom }}</td> <td>{{ $stock->type }}</td> <td>{{ $stock->description }}</td> <td>{{ $stock->StaffName }}</td> <td>{{ $stock->lot_no }}</td> <td>{{ $stock->rate }}</td> </tr> @endforeach </tbody> </table>