- 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.
15 lines
546 B
PHP
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>
|