Issue while displaying a image in column

 FileUpload::make('photopath')
                        ->disk('public')->directory('users')
                        
                        ->label('Photo'),
                        
                        
                ])->columns(1)->columnSpan(1),
            ]);
            
    }

    public static function table(Table $table): Table
    {
        return $table
            ->columns([
                TextColumn::make('name')
                    ->searchable()
                    ->sortable(),
                TextColumn::make('email')
                    ->searchable(),
                ImageColumn::make('photopath')
                ->circular(),

                    
                    
            ])
Screenshot_2023-12-06_025006.png
Solution
Are you opening the site using exactly the same ? If yes did you do php artisan storage link ?
Was this page helpful?