| Jobcard No | {{ $jobcard->jobcard_number }} |
| Jobcard Date | {{ $jobcard->jobcard_date }} |
| Bill No / Date | {{ $jobcard->bill_no ?? '-' }} / {{ $jobcard->bill_date ?? '-' }} |
| Customer Name | {{ $jobcard->customer_name }} |
| Client / Company | {{ $jobcard->client->name ?? 'N/A' }} |
| Status | {{ ucfirst($jobcard->status) }} |
| Receiving Date | {{ $jobcard->reciving_date }} |
| Tag No | {{ $jobcard->tag_no }} |
| Model No | {{ $jobcard->model_no }} |
| Serial No | {{ $jobcard->serial_no }} |
| Range | {{ $jobcard->start_range }} to {{ $jobcard->end_range }} |
Inspection History
Add New Inspection
| Date |
Body |
Display |
Mainboard |
Remarks |
@forelse($jobcard->inspections as $inspection)
| {{ $inspection->created_at->format('d-m-Y') }} |
{{ ucfirst($inspection->body_condition) }} |
{{ str_replace('_', ' ', ucfirst($inspection->display_status)) }} |
{{ ucfirst($inspection->motherboard_status) }} |
{{ $inspection->remarks ?? '-' }} |
@empty
| No inspections found. |
@endforelse
Diaphragm Details
No specific data model for Diaphragm found. This section can be used for related technical data.
@if($jobcard->oil_filling)
| Oil Type | {{ $jobcard->oil_filling->oil_type }} |
| Quantity | {{ $jobcard->oil_filling->quantity }} |
| Filling Date | {{ $jobcard->oil_filling->filling_date }} |
| MOC | {{ $jobcard->oil_filling->moc->name ?? 'N/A' }} |
| Flange | {{ $jobcard->oil_filling->flange->name ?? 'N/A' }} |
| Capillary | {{ $jobcard->oil_filling->capillary->name ?? 'N/A' }} |
Filled By: {{ $jobcard->oil_filling->filled_by }}
@else
No Oil Filling record found for this Jobcard.
Add Oil Filling
@endif
@if($jobcard->calibration)
| Calibrated By | {{ $jobcard->calibration->calibration_by }} |
| Date | {{ $jobcard->calibration->date }} |
| Certificate No | {{ $jobcard->calibration->certificate_number }} |
| Instrument | {{ $jobcard->calibration->instrument }} |
| Temperature | {{ $jobcard->calibration->temperature }} °C |
| Humidity | {{ $jobcard->calibration->humidity }} % |
| Set Point % |
Expected |
As Found |
As Left |
Error |
@foreach($jobcard->calibration->points as $point)
| {{ $point->set_point_percentage }} |
{{ $point->expected }} |
{{ $point->as_found ?? '-' }} |
{{ $point->as_left ?? '-' }} |
{{ $point->error }} |
@endforeach
@else
No Calibration record found for this Jobcard.
Add Calibration
@endif
Ready for Printing
You can download or print the consolidated Calibration Certificate and Job Report.
Generate PDF Report