I'm trying to upload an image from storage and insert it into the table. I tried a bunch of options for forming a path to a photo and none of them worked. Below are examples of paths.I work through WSL.
TD::make('image', 'Картинка')->render(function (News $news){
return "<img src="{asset($news->image)}"";
return asset($news->image);
}),
I already read the Orchid documentation and it seems that you should use some built-in function for uploading files including images. This is an example from Orchid website:
If you want to access your uploaded image then try this: