In Laravel, through $text = DB::table('articles')->select('text')->get(); got a variable with the result `Object (
[items:protected] => Array ( [0] => stdClass Object ( [text] => Vestibulum. ) ) )` And the text is displayed in this way
[{"text": "Vestibulum."}]
So the question is how to access the object to get the text? And one more optional question, why does Laravel cost objects with three-story arrays in order to convey just the text?
$text = DB::table('articles')->select('text')->get()->toArray();- robertobadjio$text[0] -> text;- The fast