@extends('layouts.app') @section('title', 'View Service Request - ISP ERP System') @section('content')
Service Request Details

Customer: {{ $serviceRequest->customer->customer_name }}

Issue Type: {{ $serviceRequest->issue_type }}

Description: {{ $serviceRequest->description ?? 'N/A' }}

Technician: {{ $serviceRequest->technician->technician_name ?? 'Not Assigned' }}

Status: {{ ucfirst(str_replace('_', ' ', $serviceRequest->status)) }}

Request Date: {{ $serviceRequest->request_date->format('M d, Y h:i A') }}

Edit Back
@endsection