[Vuejs]-Laravel "[Vue warn]: Error compiling template" When Using Dump

0๐Ÿ‘

@dump() is a Blade directive (to be used as it is), while you are wrapping it in PHP tags.

According to the documentation, this should also work: {{ dump($value) }}.

Leave a comment