Create Service Order Back to Service Orders
Customer & Vehicle Information
Customer *
Vehicle *
Service Order Details
Customer Complaint *
Recommended Services
Priority *
Status *
Assigned Technician
Scheduled Date
Estimated Hours
Service Items

Add Service Item

Add Item
@if(count($serviceItems) > 0)
@foreach($serviceItems as $index => $item) @endforeach
Service Category Rate Hours Cost Actions
{{ $item['service_name'] }}
@if($item['description'])
{{ $item['description'] }}
@endif
{{ $item['category'] }} ${{ number_format($item['labor_rate'], 2) }} {{ $item['estimated_hours'] }} ${{ number_format($item['labor_cost'], 2) }} Remove
@else
No service items added yet.
@endif
Parts

Add Part

Add Part
@if(count($selectedParts) > 0)
@foreach($selectedParts as $index => $part) @endforeach
Part Part # Qty Unit Price Total Actions
{{ $part['part_name'] }} {{ $part['part_number'] }} {{ $part['quantity_used'] }} ${{ number_format($part['unit_price'], 2) }} ${{ number_format($part['total_price'], 2) }} Remove
@else
No parts added yet.
@endif
Order Totals
Labor Cost: ${{ number_format($this->getTotalLaborCost(), 2) }}
Parts Cost: ${{ number_format($this->getTotalPartsCost(), 2) }}
Subtotal: ${{ number_format($this->getSubtotal(), 2) }}
Tax (8%): ${{ number_format($this->getTaxAmount(), 2) }}
Total: ${{ number_format($this->getTotalAmount(), 2) }}
Notes
Internal Notes
Customer Notes
Cancel Create Service Order