Why isn't my status showing in select even that is is selected and being updated ?
Tables\Columns\SelectColumn::make('status')
->tooltip('Update Status')
->options(BookingStatus::toArray()),
Value is being selected and updated, but it shows as blank on select.
2 Replies
This is probably because you have more columns than table width and thus columns begin to shrink. In this case it shrinks to the width of the header label. I can’t remember the fix off the top of my head but hopefully knowing why will help. Maybe adding some classes/styles with
extraAttributes
to the column?Thank you