Image not showing on table column

Hi, i just trying to create a product crud with image upload inside. The image was uploaded in /storage/public/product, but not showing in my table

Forms\Components\FileUpload::make('foto')
                    ->image()
                    ->directory('product')
                    ->required(),


Tables\Columns\ImageColumn::make('foto'),


$table->string('foto')->nullable();
Was this page helpful?