Multiple fields in one column

Hello, I'm looking for a way to combine 2 fields into a single column, I have a date and time in a separate DB columns but would like to show them as single table column, ie "date - time" kind of layout
Thank you!
Solution
I think you can use the state method on the input, like so:
Tables\Columns\TextColumn::make('date-time')
->getStateUsing(function (Model $record): string {
return $record->date . $record->time;
})
Was this page helpful?