DariusIII
DariusIII
FFilament
Created by DariusIII on 1/9/2024 in #❓┊help
RouteNotFoundException on 3.1.37
I have updated from 3.1.36 to 3.1.37 and instantly started getting the exception. Rolling back to .36 and everything works as before. Does anyone else have this issue?
51 replies
FFilament
Created by DariusIII on 12/15/2023 in #❓┊help
TextColumn wrap() broken on 3.1.21
wrapping text is broken on 3.1.21 and it work fine on 3.1.20. My guess is that issue comes with this PR: https://github.com/filamentphp/filament/pull/9149 as that is the only thing in this release that is related to alignment. I made a comment in that PR with example.
4 replies
FFilament
Created by DariusIII on 10/29/2023 in #❓┊help
Object of class Filament\Support\Enums\Alignment could not be converted to string
I started having this issue on every version after .83. All is working fine on 3.0.83, so i have to stick to it for now. Here is the link to trace: https://flareapp.io/share/xPQwOar5
7 replies
FFilament
Created by DariusIII on 8/4/2023 in #❓┊help
auth()->user-> not filled in form
I have an issue with username not being filled neither with deafult() or reactive(). It looks like auth()->user()->name not being used at all. There is no error whatsoever shown, just data being ignored. Currently i am filling those with mutateFormDataBeforeSave, but i would like to have it in form directly. Forms\Components\Checkbox::make('checked') ->label('Checked') ->reactive() ->afterStateUpdated(fn ($state, callable $set) => $state === true ? $set('checked_by', auth()->user()->name) : $set('checked_by', null)) ->afterStateUpdated(fn ($state, callable $set) => $state === true ? $set('checked_time', now()->toDateTimeString()) : $set('checked_time', null)), Checked time works as it should, i have issue only with checked_by field.
11 replies
FFilament
Created by DariusIII on 8/2/2023 in #❓┊help
Customizing login page
I have overridden the login page on v2 so username was used, but with upgrade to v3 it is not used anymore. I have tried to add my custom login as action in AdminPanelProvider login, but it still loads the default login page and not the customized one. How can i achieve this in v3?
6 replies