What is the replacement for Filament::pushMeta
I am using v3 and i need use pushMeta but i dont know what is the replacment of it in v3
Solution:Jump to solution
```php
FilamentView::registerRenderHook(
'panels::head.end',
fn (): View => view('components.favicon'),
);...
4 Replies
Solution
There’s also $panel->favicon()
Not sure why you need a view for the favicon though.
I am using a generated favicons for each device.
Thanks for the response 🙂
Gotcha. Makes sense in that case. You can also use $panel->renderHook().
Just so you know. 🙂