*/ public static function getValidations() { return [ 'enabled' => 'nullable|boolean', ]; } /** * Summary of optionTypes * Only used for the settings page * @return array>> */ public static function getOptionInputData() { return [ 'category_icon' => 'fas fa-ticket-alt', 'enabled' => [ 'label' => 'Enabled', 'type' => 'boolean', 'description' => 'Enable or disable the ticket system.', ], ]; } }