skip to Main Content

Model Logic In Laravel

I am working on the Laravel back-end and I have a some question. Can I put some logic methods to the the models? Get data in specific format, for example. And some like this: public function getAllWithObjects() { $all_photos =…

VIEW QUESTION

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 =…

VIEW QUESTION
Back To Top
Search