Laravel – Access variable in vue custom renderer
I am trying to implement te custom renderer of this Vue Word Cloud component in Laravel: https://github.com/SeregPie/VueWordCloud I first prepare my word array using php (working): @php $tags = AppModelsTag::withCount('songs')->orderBy("songs_count", "desc")->take(50)->get(); $words = ""; foreach($tags as $tag) { $count =…