/
home
/
sjslayjy
/
public_html
/
assets
/
resources
/
views
/
exports
/
Upload File
HOME
<table> <thead> <tr> <th colspan="5" style="text-align:center;font-size:20px;">All Spares</th> <th></th> </tr> <tr> <th>Spare Code</th> <th>Description</th> <th>UOM</th> <th>Type</th> <th>Category</th> </tr> </thead> <tbody> @foreach($spares as $spare) <tr> <td>{{$spare->code}}</td> <td>{{$spare->description}}</td> <td>{{$spare->uom}}</td> <td>{{$spare->type}}</td> <td>{{$spare->category}}</td> </tr> @endforeach </tbody> </table>