Hi @vrry,
I suggest to do some laravel / vue crud tutorials. Example, https://appdividend.com/2018/11/17/vue-laravel-crud-example-tutorial-from-scratch/
You will learn how to insert, update, delete and show data.
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
How can i use axios to post array data in spesific column in database. in frontend i use vuejs.
For example :
I have array hobbies = ['swimming', 'travelling', 'reading'] and name=steven
and I have a table from database, table = {id: integer, name: string, hobbies, string}
and the result in database :
{id: 1, name: steven, hobbies: swimming} {id: 2, name: steven, hobbies: travelling} {id: 3, name: steven, hobbies: reading}
how I make the code in vue script.
I hope you understand what I mean :d
thanks lots
Please or to participate in this conversation.