SeanKiwi (Semantics)
table layout styling
@awcodes did you mean something like this? i had to use getStateUsing because formatStateUsing isnt working for some reason.
TextColumn::make('customer_details')
->label('Test')
->getStateUsing(fn ($record) => "{$record->model_number} <br> {$record->status}")
->html(),
33 replies
table layout styling
@awcodes i came across this thread from last year for the same topic and someone managed to find a work around, however it does not appear to be working, was it maybe for filament2?
https://github.com/filamentphp/filament/discussions/12061
33 replies
table layout styling
@awcodes i tried this as well, however it creates alot more work to get everything right and its breaks other things such as ->defaultSort('name').
Is there no other options for a simple stack just to get 2 columns stacked vertically?
33 replies
Change redirect path after session expires
@awcodes Thanks, I was doing some with middleware to try catch session expiry and redirect but this is cleaner.
I have a strange side effect where after session time out and a re-login, filament opens in an iframe, any ideas what might cause this?
It doesn't happen if we manually logout and log back in. for reference we are using Laravel's vue starter kit auth for sign in
6 replies