@extends('layouts.app') @section('content')

Fault Stock View

Reset
@forelse($faults as $row) @empty @endforelse
ID Invoice Number Fault Date Given To Item Particular Specification Model Qty Remarks
{{ $row->id }} {{ $row->purchaseStock->invoice_number ?? 'N/A' }} {{ $row->fault_date }} {{ $row->given_to }} {{ $row->purchaseStock->item_name ?? $row->item_name }} {{ $row->purchaseStock->particular_name ?? $row->particular_name ?? '0' }} {{ $row->purchaseStock->specification ?? $row->specification ?? '0' }} {{ $row->purchaseStock->model_number ?? $row->model_number ?? '0' }} {{ $row->qty ?? '0' }} {{ $row->remarks }}
No records found
{{ $faults->withQueryString()->links() }}
@endsection