Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

Kris01's avatar

Laravel Nova Display Json

Hello,

I have a field in the database, a nested json that looks like this:

[{"name":"Proof of funding","path":"37459_1658601075_07232022063115.pdf"},{"name":"Other Documents","path":"83680_1658601095_07232022063135.pdf"}]

How can I display it on Laravel Nova?

0 likes
1 reply
ramonrietdijk's avatar

The code field would be your best choice.

use Laravel\Nova\Fields\Code;

Code::make('Options')->json()

Please or to participate in this conversation.