Show Image in InfoList

In infolist builder, we have an option to show image.

My issue is that I don't save the image on the database. I will use an image uploaded to the public folder with filename of the code column.

In normal blade, I'm going to render it with
<img height="65"
    src="{{ public_path() . '/images/product_images/' . $orderItem->variant->product->code . '.png' }}"
    class="" />


How do I achieve this in InfoList card?
Was this page helpful?