ToggleButtons::make('feedback')
->label('What kind of ticket would you like to open?')
->options(TicketsStatus::all()->pluck('name', 'id'))
->colors(TicketsStatus::all()->pluck('ticket_color', 'id'))
->grouped()
->extraAttributes([
'style' => 'width: 100%;' // Ensure it takes full width
])
->columnSpan(6),
ToggleButtons::make('feedback')
->label('What kind of ticket would you like to open?')
->options(TicketsStatus::all()->pluck('name', 'id'))
->colors(TicketsStatus::all()->pluck('ticket_color', 'id'))
->grouped()
->extraAttributes([
'style' => 'width: 100%;' // Ensure it takes full width
])
->columnSpan(6),