Select::make('session_commission_id')
->options([
'1' => 'Any type of commission',
'2' => 'Other type of commission',
'3' => 'Another type of commission',
])
->searchable()
->preload()
->native(false)
->label('Commission')
->required()
->rules('required')
->live(true)
->afterStateUpdated(function (Get $get) {
$this->session_commission_id = $get('session_commission_id');
}),
Select::make('session_commission_id')
->options([
'1' => 'Any type of commission',
'2' => 'Other type of commission',
'3' => 'Another type of commission',
])
->searchable()
->preload()
->native(false)
->label('Commission')
->required()
->rules('required')
->live(true)
->afterStateUpdated(function (Get $get) {
$this->session_commission_id = $get('session_commission_id');
}),