This repository was archived by the owner on Jun 10, 2021. It is now read-only.
  
  
  
  
  
Description
Hello again, I'm trying to show an image in one of the columns without success, I'm doing it this way:
{
                        name: 'Photo',
                        key: 'photo',
                        render(value) {
                            return `<img src="/storage/uploads/userProduct/18-02-20-10-33-35_photo.png" />`;
                        }
                    },
And try also as the documentation shows but it does not work either:
{
    ...,
    columns: [
        {
            name: 'Name',
            key: 'key',
            render (value, row) {
                return <strong>{value}</strong>
            }
        }
    ]
}
Would you be so kind to help me show the images on the table, how should I do it?
Regards,