Julien B. (aka yebor974)
Julien B. (aka yebor974)
FFilament
Created by Mack H on 4/14/2025 in #❓┊help
Resolve Tenant before panel
5 replies
FFilament
Created by Fayne on 4/1/2025 in #❓┊help
What's the correct approach to load filament styles in a frontend page?
Maybe can help you
8 replies
FFilament
Created by Fayne on 4/1/2025 in #❓┊help
What's the correct approach to load filament styles in a frontend page?
8 replies
FFilament
Created by Florian on 3/27/2025 in #❓┊help
Changing background panel
7 replies
FFilament
Created by Cager on 3/14/2025 in #❓┊help
Multi tenancy file upload/edit
Hi. Do you have a web proxy. In console have you a cor error ?
3 replies
FFilament
Created by Matthew on 3/6/2025 in #❓┊help
Filament::auth()->login($user), multiple guards
Maybe this article cans help you : https://filamentmastery.com/articles/implementing-filament-auth-guard For testing i init panel in TestCase with : Filament::setCurrentPanel( Filament::getPanel(FilamentPanelEnum::BACKEND->value) ); And acting as with : $this->actingAs($member, Filament::getAuthGuard()); When you manage policy you can check permission like this if you use spatie permissions package: public function viewAny(User $user): bool { return $user->hasPermissionTo('view-any broker', filament()->getAuthGuard()); }
5 replies
FFilament
Created by Trauma Zombie on 2/12/2025 in #❓┊help
How to create form with Filament styles outside the panel?
I wrote an article on using Filament outside of panels if that can help you https://filamentmastery.com/articles/guide-to-using-filament-components-in-public-facing-pages You can next use form in a livewire component
7 replies
FFilament
Created by LordOfDrols on 1/15/2025 in #❓┊help
Add Elements to the TopMenu
9 replies
FFilament
Created by LordOfDrols on 1/15/2025 in #❓┊help
Add Elements to the TopMenu
you can register it directly on you panel provider too
9 replies
FFilament
Created by LordOfDrols on 1/15/2025 in #❓┊help
Add Elements to the TopMenu
Example :
FilamentView::registerRenderHook(
PanelsRenderHook::TOPBAR_START,
fn (): string => Blade::render('<x-filament::link href="' . config('app.url') . '" target="_blank" icon="heroicon-o-arrow-top-right-on-square">View Public Area</x-filament::link>'),
);
FilamentView::registerRenderHook(
PanelsRenderHook::TOPBAR_START,
fn (): string => Blade::render('<x-filament::link href="' . config('app.url') . '" target="_blank" icon="heroicon-o-arrow-top-right-on-square">View Public Area</x-filament::link>'),
);
9 replies
FFilament
Created by LordOfDrols on 1/15/2025 in #❓┊help
Add Elements to the TopMenu
Hi, You can use render hook TOPBAR_START Example here with AUTH_REGISTER_FORM_BEFORE : https://filamentmastery.com/articles/filament-render-hooks-example-with-authentication-pages
9 replies
FFilament
Created by Tudor on 1/13/2025 in #❓┊help
Filament Auth via an external api
You can register or subscribe to https://filamentmastery.com to discover other tutorials. All it’s free
7 replies
FFilament
Created by Tudor on 1/13/2025 in #❓┊help
Filament Auth via an external api
You’re welcome
7 replies
FFilament
Created by Tudor on 1/13/2025 in #❓┊help
Filament Auth via an external api
7 replies
FFilament
Created by Tudor on 1/13/2025 in #❓┊help
Filament Auth via an external api
Hi, It’s possible by defining custom guard and user provider. To map your guard you can follow this article : https://filamentmastery.com/articles/implementing-filament-auth-guard
7 replies
FFilament
Created by Pathros on 1/13/2025 in #❓┊help
Email sending not working on reset password
Hi. The reset password notification is put in the job queue. Try to enable your queue if not. If you use horizon : php artisan horizon
5 replies
FFilament
Created by AngryTestie on 1/13/2025 in #❓┊help
Custom Login Page(add link below the sign in button)
I have no other way to do this than to redefine the login view but this is not recommended. What version of Filament are you using?
8 replies
FFilament
Created by AngryTestie on 1/13/2025 in #❓┊help
Custom Login Page(add link below the sign in button)
Hi, You can use render hook AUTH_LOGIN_FORM_AFTER Example here with AUTH_REGISTER_FORM_BEFORE : https://filamentmastery.com/articles/filament-render-hooks-example-with-authentication-pages
8 replies
FFilament
Created by dbiljak on 1/12/2025 in #❓┊help
Help with email translation
Hi. Filament uses the laravel reset password. You can translate it with json lang file like en.json.
3 replies
FFilament
Created by Azad Furkan ŞAKAR on 1/9/2025 in #❓┊help
Anystack Billing Page Error
Hi. I had this error because my IP was not supported by this integration of Stripe. I use a vpn and it was ok. Maybe you have the same issue
5 replies