isActive(); } public function getSettings() { return (new LocalSettings())->get(); } public function fields(): array { return [ 'view' => [ 'title' => __('Local Settings', 'fluent-cart'), 'type' => 'section', 'disable_nesting' => true, 'columns' => [ 'default' => 1, 'md' => 1, 'lg' => 1 ], 'schema' => [ 'is_active' => [ 'value' => '', 'label' => __('Enable local driver', 'fluent-cart'), 'type' => 'checkbox' ] ] ] ]; } public function getDriverClass(): string { return LocalDriver::class; } public function hiddenSettingKeys(): array { return []; } }