Level 122
if you are wanting to pass a php variable via blade file then you need to use php syntax
is themeData a php function?
Have you registered it globally?
or is it a variable, in which case you should use {{ $themeData }}
I am trying to create a dark and light theme using Vuetify, therefore I want to pass a variable through the meta tag to toggle between the themes.
<meta name="theme" content="{{themeData()}}">
<script>
let themeData = "test??";
</script>
I want to pass the data of the variable through to the content
Please or to participate in this conversation.