sortable(), BelongsTo::make('Repair Order') ->searchable() ->rules('required'), Text::make('Name') ->sortable() ->rules('required'), Textarea::make('Description') ->hideFromIndex() ->nullable(), Select::make('Status') ->options([ 'pending' => 'Pending', 'in_progress' => 'In Progress', 'completed' => 'Completed', 'skipped' => 'Skipped', ]) ->displayUsingLabels() ->sortable(), BelongsTo::make('Technician') ->searchable() ->nullable(), Number::make('Estimated Hours') ->step(0.1) ->nullable(), Number::make('Actual Hours') ->step(0.1) ->nullable(), DateTime::make('Started At') ->nullable(), DateTime::make('Completed At') ->nullable(), ]; } }