Car-Repairs-Shop/test-inspection.blade.php
sackey 5403c3591d
Some checks are pending
linter / quality (push) Waiting to run
tests / ci (push) Waiting to run
feat: Enhance job card workflow with diagnosis actions and technician assignment modal
- Added buttons for assigning diagnosis and starting diagnosis based on job card status in the job card view.
- Implemented a modal for assigning technicians for diagnosis, including form validation and technician selection.
- Updated routes to include a test route for job cards.
- Created a new Blade view for testing inspection inputs.
- Developed comprehensive feature tests for the estimate module, including creation, viewing, editing, and validation of estimates.
- Added tests for estimate model relationships and statistics calculations.
- Introduced a basic feature test for job cards index.
2025-08-15 08:37:45 +00:00

15 lines
546 B
PHP

<div>
<flux:select wire:model="fuel_level" label="Fuel Level" required>
<option value="">Select fuel level...</option>
<option value="empty">Empty (0-10%)</option>
<option value="low">Low (10-25%)</option>
<option value="quarter">Quarter (25-40%)</option>
<option value="half">Half (40-60%)</option>
<option value="three_quarter">Three Quarter (60-85%)</option>
<option value="full">Full (85-100%)</option>
</flux:select>
@if(true)
<p>Test content</p>
@endif
</div>