Service Items Management

Manage labor operations and service items for diagnosis and repairs

@if (session()->has('message'))

{{ session('message') }}

@endif @if($showForm)

{{ $editingId ? 'Edit Service Item' : 'Add New Service Item' }}

@error('service_name')

{{ $message }}

@enderror
@error('category')

{{ $message }}

@enderror
$
@error('labor_rate')

{{ $message }}

@enderror
@error('estimated_hours')

{{ $message }}

@enderror
@error('status')

{{ $message }}

@enderror
@error('description')

{{ $message }}

@enderror
@error('technician_notes')

{{ $message }}

@enderror
@endif

Service Items

@if($serviceItems->count() > 0)
@foreach($serviceItems as $item) @endforeach
Service Category Labor Rate Est. Hours Est. Cost Status Actions
{{ $item->service_name }}
@if($item->description)
{{ Str::limit($item->description, 60) }}
@endif
{{ $item->category }} ${{ number_format($item->labor_rate, 2) }}/hr {{ $item->estimated_hours }}h ${{ number_format($item->estimated_hours * $item->labor_rate, 2) }} {{ ucfirst($item->status) }}
{{ $serviceItems->links() }}
@else

No service items found

@if($searchTerm || $categoryFilter) Try adjusting your search criteria. @else Get started by creating your first service item. @endif

@endif