johny7
Filament favicon is not embedded via https
No one there who can help me? If I have found out correctly, the layout for this is under
vendor\filament\filament\resources\views\components\layout\base.blade.php
. The first lines (up to the integration of the favicon) look like this:
Does anyone know how I can find out which controller is used to call up this layout?8 replies
GMail Mailer for laravel/filament
Found it now by myself via https://medium.com/@laraveltuts/how-to-send-mail-using-gmail-in-laravel-9-76d110779a4a
You have to create an App Password via https://myaccount.google.com/apppasswords and can use it in
.env
like:
4 replies
Select Disable when published
Your condition says, the Select
brand_id
should be disabled, when it's own value is brand_id
. I think, when you select an option from the relationship brands
, you will get an integer ID of the brand, but never the value brand_id
. So your condition will never match.
Maybe
is, what you are seeking for, because the value will be null
, when brand_id
is not set.25 replies
Use filament custom theme without npm/node
Hm. When I run
npm run build
I became a broken template. Running npm run dev
the vite server is runs and I get a working template. Shuting down the vite server, the template brokes.
Using ->viteTheme('resources/css/filament/app/theme.css')
in the PanelServiceProvider my template references assets at the vite server:
So how can I use my template without an active vite-server?
The generated assets at public\build... aren't used anywhere. What I'm doing wrong?14 replies