Not sure what you're asking. Are you trying to extract the thumb from the JSON?
$data = json_decode($JSON);
$thumb = $json->thumb;
Or...not sure what you're asking for.
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
I'm looking for solution a resource with important data in json format (photos.urls)
{
"raw": "https://images.unsplash.com/photo-1531214141683-bdcc6c193522?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjQ5NzYwfQ",
"full": "https://images.unsplash.com/photo-1531214141683-bdcc6c193522?ixlib=rb-1.2.1&q=85&fm=jpg&crop=entropy&cs=srgb&ixid=eyJhcHBfaWQiOjQ5NzYwfQ",
"small": "https://images.unsplash.com/photo-1531214141683-bdcc6c193522?ixlib=rb-1.2.1&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&fit=max&ixid=eyJhcHBfaWQiOjQ5NzYwfQ",
"thumb": "https://images.unsplash.com/photo-1531214141683-bdcc6c193522?ixlib=rb-1.2.1&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=200&fit=max&ixid=eyJhcHBfaWQiOjQ5NzYwfQ",
"regular": "https://images.unsplash.com/photo-1531214141683-bdcc6c193522?ixlib=rb-1.2.1&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=1080&fit=max&ixid=eyJhcHBfaWQiOjQ5NzYwfQ"
}
I look 64robots/nova-fields, and work fine for extract json columns in resoruce details.
But I need, extract for example "thumb" column json, for use in for example, Laravel Nova External Image Field to be able to see in the resource list, the thumbnail
I'm going around the subject a bit, but I do not see an appropriate form, and I'm getting stuck. Any ideas?
Please or to participate in this conversation.