SKNtheKing
Can't see image on browser after deploying app
Hello, I'm having a problem that after in uploaded my project to a server i can't see the images I've uploaded. I've already ran the storage:link command and and when i upload the image, it stores it in both storage files, but it seems it cant reach the folder i stored it in. When i inspect the image, it even shows the url as https://url.comstorage, instead of https://url.com/storage. Anyone has any idea of what could be causing this?
Thanks in advance
2 replies
nextAction on Wizard built with getState Function
Good evening, I'm trying to change the label of the next button on a Wizard built with the getState function and cant seem to get how to access the button. I've published the form translation but it also does not work.
Thanks in advance!
5 replies
emptyStateHeading and emptyStateDescription not working in RelationManager tables
Good evening, I'm trying to change the heading and description on a relation manager empty table and using these function does not work. Is it supposed to or a bug? If it is, how could i change these without the functions?
Thanks you in advance
7 replies
Hiding Create form buttons untill the last step of a Wizard
Hello everyone, im trying to use a wizard to create an item in a resource, but i would like the form buttons like create and create another to only be visible when on the last step of the wizard. I've tried a lot of solutions but none of them seem to work. Anyone got an idea on how to do it?
Thank you in advance!!
13 replies
ImageColumn shows an ? with 404 not found error on console
Hello, Im trying to show an image on a relationmanager table. The image is stored on the public disk on the filesystem and ive already linked my public storage with artisan storage:link, but when i go to my resource, the image doesnt appear and in my browser console i get the following error: Failed to load resource: the server responded with a status of 404 (Not Found) with the url http://127.0.0.1:8000/admin/products/17/localhost/storage/filename.jpg. Im using the following code block to show the image: return $table
->recordTitleAttribute('image_url')
->columns([
ImageColumn::make('image_url')->disk('public')->width(200)->height(200)
])
would appreaciate any help! thanks in advance!
4 replies