wazkaz
wazkaz
FFilament
Created by ericmp on 11/7/2024 in #❓┊help
How to configure reverb with filament?
Hey guys. I have exactly the same problem. The console log returns this error: WebSocket is closed before the connection is established., I've been trying to solve it for a few days, but not much success yet. So I am also searching the solution if i found something I will tell.
134 replies
FFilament
Created by wazkaz on 10/21/2024 in #❓┊help
Button blade component customization
Thanks 😄
5 replies
FFilament
Created by wazkaz on 8/28/2024 in #❓┊help
Unique validation on edit throws error
I found what was the problem. So the $record somehow was null and that's why validated the unique every time. The workaround for this I passed the record from the Livewire component:
use Livewire\Component as Livewire;
->unique(ignorable: fn (Livewire $livewire) => $livewire->record)
use Livewire\Component as Livewire;
->unique(ignorable: fn (Livewire $livewire) => $livewire->record)
18 replies
FFilament
Created by wazkaz on 8/28/2024 in #❓┊help
Unique validation on edit throws error
okay i will check
18 replies
FFilament
Created by wazkaz on 8/28/2024 in #❓┊help
Unique validation on edit throws error
with and without spaces
18 replies
FFilament
Created by wazkaz on 8/28/2024 in #❓┊help
Unique validation on edit throws error
Btw, I am using this ->unique(ignorable: fn ($record) => $record) on other places and it is working there
18 replies
FFilament
Created by wazkaz on 8/28/2024 in #❓┊help
Unique validation on edit throws error
or what do you mean?
18 replies
FFilament
Created by wazkaz on 8/28/2024 in #❓┊help
Unique validation on edit throws error
But the value without spaces still throws error
18 replies
FFilament
Created by wazkaz on 8/28/2024 in #❓┊help
Unique validation on edit throws error
I already tried this: ->unique(ignoreRecord: true) but still throws the error. The other records have different values. I tried without space, it saved. Then I tried to update the record again and still throws the error.
18 replies
FFilament
Created by wazkaz on 8/28/2024 in #❓┊help
Unique validation on edit throws error
No description
18 replies
FFilament
Created by wazkaz on 8/19/2024 in #❓┊help
Set displayed timezone globally
Oh, I see, then this is the only solution. Thanks!
7 replies
FFilament
Created by wazkaz on 8/19/2024 in #❓┊help
Set displayed timezone globally
Yes, similarly, but that one is only for the text columns, whereas this is for the other components too. This way, you don't have to set it in every place where you need it. I mean that you don't have to set the time zone for each component separately.
7 replies
FFilament
Created by wazkaz on 8/16/2024 in #❓┊help
Global setting for TextColumn partially working
Okay, I found a workaround. If I add the dateTime function to the TextColumn, in that case the timezone is applied.
9 replies
FFilament
Created by wazkaz on 8/16/2024 in #❓┊help
Global setting for TextColumn partially working
No description
9 replies
FFilament
Created by wazkaz on 8/16/2024 in #❓┊help
Global setting for TextColumn partially working
I also tried to add the timezone change directly to the TextColumn where is not worked, but that didn't work either.
9 replies
FFilament
Created by wazkaz on 8/16/2024 in #❓┊help
Global setting for TextColumn partially working
I tried this too, the description is on everywhere. But the timezone still not changed everywhere.
9 replies
FFilament
Created by wazkaz on 7/10/2024 in #❓┊help
Table widget width
Meanwhile found the solution, we need to add this line in the widget:
protected int|string|array $columnSpan = 'full';
protected int|string|array $columnSpan = 'full';
4 replies
FFilament
Created by wazkaz on 7/2/2024 in #❓┊help
Custom table in the resource page
Resource hooks? You mean render hooks?
6 replies
FFilament
Created by wazkaz on 7/8/2024 in #❓┊help
Redirect parameter loss
Thanks, it worked! 😄
5 replies
FFilament
Created by wazkaz on 7/5/2024 in #❓┊help
Select column width
It worked, good. Thanks! 😄
5 replies