use Translatable;
use Filament\Resources\Concerns\Translatable;
Select::make('option')
->options(fn () => [
'monthly' => __('content.priceing.monthly_label'),
'one-time' => __('content.priceing.one_time_label'),
])
->live()
->nullable()->columnSpan(6)
use Translatable;
use Filament\Resources\Concerns\Translatable;
Select::make('option')
->options(fn () => [
'monthly' => __('content.priceing.monthly_label'),
'one-time' => __('content.priceing.one_time_label'),
])
->live()
->nullable()->columnSpan(6)