Where can I find the main <head> tag in my filamentapp
I want to add PWA for my app and for that I need to add
@LaravelPWA
to my global head tag but I am not sure where to find that in the appSolution:Jump to solution
Take a look at the
panels::head.end
render hook https://filamentphp.com/docs/3.x/support/render-hooks#available-render-hooks2 Replies
Solution
Take a look at the
panels::head.end
render hook https://filamentphp.com/docs/3.x/support/render-hooks#available-render-hooks
this outputs
@LaravelPwa
rather then the value it evaluates to
I'll try to figure this out on my own but if anyone got any idea let me know
the solution was to put the directive in it's own blade view then reference that with the view()
helper function