Julien B. (aka yebor974)
Can't download PDF using Spatie Laravel-pdf
I’m thinking about writing a short article on Filament Mastery about this topic to explain the setup more in detail. What do you think?
8 replies
Can't download PDF using Spatie Laravel-pdf
Hello, have you installed the dependencies like "puppeteer"? I'm using version ^17.1.3 for it to work. Also, in production, I need to add some parameters to Browsershot to set the associated paths.
8 replies
Resolve Tenant before panel
Hi @Mack H I made a article about this : https://filamentmastery.com/articles/branding-in-filament-multi-tenant-customize-logo-colors
5 replies
What's the correct approach to load filament styles in a frontend page?
I wrote this post about using components on frontend https://filamentmastery.com/articles/guide-to-using-filament-components-in-public-facing-pages
8 replies
Changing background panel
Hi. I Hope this post can help you https://filamentmastery.com/articles/customize-your-filament-panel-theme
7 replies
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
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
Add Elements to the TopMenu
yes, same example here : https://filamentmastery.com/articles/filament-render-hooks-example-with-authentication-pages#multiple-panels
9 replies