Replies: 1 comment
-
Hey @Snoker87, I'm not familiar with Blade, so I don't know how well it integrates with JSX. As far as I'm aware, Blade is mainly used for rendering HTML, so the JavaScript used there needs to be already interpretable for the browser (which isn't the case of JSX which must be compiled). One possibility would be to store the value you need to pass to Autocomplete on the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello in my Algolia.tsx file I have this block of code
As you see
facetFilters: "college_id:1"
college_id is set to 1 statically I want to make it with blade likecollege_id:{{$student->college->id}}
dynamically
how can I make this ? Is There anyway to define those params outside the algolia.tsx file ?
Beta Was this translation helpful? Give feedback.
All reactions