NathanaelGT
NathanaelGT
FFilament
Created by NathanaelGT on 5/20/2024 in #❓┊help
Grouping rows - default orderQueryUsing
this is what I mean by "default"
7 replies
FFilament
Created by NathanaelGT on 5/20/2024 in #❓┊help
Grouping rows - default orderQueryUsing
this is my code
7 replies
FFilament
Created by NathanaelGT on 5/20/2024 in #❓┊help
Grouping rows - default orderQueryUsing
sorry for my ambiguous words, I don't know a better word to explain this. When groups is populated, the select input has all the group + "Group by" option as a placeholder. I would like to know how to add orderQueryUsing when the user selects the "Group by" placeholder
7 replies
FFilament
Created by kool on 5/12/2024 in #❓┊help
Duplicate Query in Resource Navigation Badge
I personally always avoid run expensive code directly inside the filament methods. An easy solution if I run into that situation is to wrap it inside once()
13 replies
FFilament
Created by Jon Mason on 11/1/2023 in #❓┊help
Tapping into email verification functionality.
For future readers, try this
// service provider
use Filament\Facades\Filament;
use Illuminate\Auth\Notifications\VerifyEmail;

VerifyEmail::createUrlUsing(Filament::getVerifyEmailUrl(...));
// service provider
use Filament\Facades\Filament;
use Illuminate\Auth\Notifications\VerifyEmail;

VerifyEmail::createUrlUsing(Filament::getVerifyEmailUrl(...));
22 replies