Skip to content
Advertisement

Read first record of array instead of first character in Laravel

I’m using Laravel 8 . I’ve saved some array in my database and when I try to read those arrays I just get a single character of it.

For example the array in database is ["one", "two"] and when i write

JavaScript

it will just show ‘[‘ instead of ‘one’

in my migration file i did this :

JavaScript

and also in model i did try this :

JavaScript

and in my controller i did something like this one to show data :

JavaScript

Advertisement

Answer

I’ve solved the problem. the problem was the way that i’ve called the record on table. I missed adding

JavaScript

to my controller. and in my controller i used to write

JavaScript

which I changed it to :

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement