Edit Service Order #{{ $serviceOrder->order_number }} Update service order details and manage work items
{{ ucfirst(str_replace('_', ' ', $serviceOrder->status)) }}
Customer & Vehicle Information
Customer @foreach($customers as $customer) @endforeach Vehicle @foreach($vehicles as $vehicle) @endforeach
Assigned Technician @foreach($technicians as $technician) @endforeach Status
Service Details
Customer Complaint Diagnosis
Customer Notes Discount Amount
Service Items Add Service
@foreach($serviceItems as $index => $item)
Service Name Labor Rate Hours Total
Description
@endforeach
Parts Add Part
@foreach($selectedParts as $index => $part)
Part @foreach($availableParts as $availablePart) @endforeach Quantity Unit Price Total
@endforeach
Order Summary
Labor Cost: ${{ number_format($this->getTotalLaborCost(), 2) }}
Parts Cost: ${{ number_format($this->getTotalPartsCost(), 2) }}
@if($discount_amount > 0)
Discount: -${{ number_format($discount_amount, 2) }}
@endif
Subtotal: ${{ number_format($this->getSubtotal(), 2) }}
Tax (8%): ${{ number_format($this->getTaxAmount(), 2) }}
Total: ${{ number_format($this->getGrandTotal(), 2) }}
Back to Service Order Update Service Order