/
home
/
sjslayjy
/
public_html
/
assets
/
resources
/
views
/
exports
/
Upload File
HOME
<table class="table table-striped"> <thead> <tr> <th>Circle Name</th> <th>Warehouse TRC-Engineer</th> <th>TRC Assigned Date</th> <th>Repaired date</th> <th>Item Code</th> <th>Item Description</th> <th>UOM</th> <th>Category</th> <th>Repaired Qty</th> <th>Faulty Qty</th> <th>Spare Component Code</th> <th>Component Description</th> <th>Qty</th> <th>Value</th> <th>Is Component</th> </tr> </thead> <tbody> @php $trc_id = ''; @endphp @foreach($all_trc as $key=>$trc) <tr> @if($trc_id == $trc->id) <td></td> <td></td> <td></td> <td></td> <td></td> <td></td> <td></td> <td></td> <td></td> <td></td> <td>{{ $trc->component_code }}</td> <td>{{ $trc->component_code }}</td> <td>{{ $trc->component_qty }}</td> <td>{{ $trc->component_rate }}</td> <td>{{ ($trc->is_component == 1)?'Yes':'No' }}</td> @else <td>{{ $trc->warehouse }}</td> <td>{{ $trc->trc_engineer }}</td> <td></td> <td>{{ $trc->created_at }}</td> <td>{{ $trc->spare_code }}</td> <td>{{ $trc->description }}</td> <td>{{ $trc->uom }}</td> <td>{{ $trc->category }}</td> <td>{{ $trc->qty }}</td> <td></td> <td>{{ $trc->component_code }}</td> <td>{{ $trc->component_code }}</td> <td>{{ $trc->component_qty }}</td> <td>{{ $trc->component_rate }}</td> <td>{{ ($trc->is_component == 1)?'Yes':'No' }}</td> @endif @php $trc_id = $trc->id; @endphp </tr> @endforeach </tbody> </table>