ImageColumn not displaying in Table builder
I created a listing data with an image and I'm using the Table builder to create a table for my listing. The problem is that all other data columns are displaying except for the image. When I output the image without the Table builder by using Storage::URL($image), the image display but when I use the ImageColumn::make('image'), the image is displayed. This is how I saved the image FileUpload::make('image')
->image()
->preserveFilenames()
->directory('listing')
->hint('Main Image')
->columnSpan('full')
->required(),
->image()
->preserveFilenames()
->directory('listing')
->hint('Main Image')
->columnSpan('full')
->required(),