sweetplum
sweetplum
FFilament
Created by sweetplum on 3/8/2025 in #❓┊help
Can't preview an image with 'private' disk when using spatie-laravel-media-library-plugin
help!
6 replies
FFilament
Created by morty on 2/11/2025 in #❓┊help
Spatie Media Library Plugin black screen on upload of some files
Hi, I saw the ->visibility('private') in your code, on the edit page are you able to preview this image? I have something like this
SpatieMediaLibraryFileUpload::make('business_license')
->collection('business-license')
->disk('private')
->image()
->visibility('private') // This is important, but doesn't solve the preview issue on its own
->label(__('Business License'))
->maxSize(1024),
SpatieMediaLibraryFileUpload::make('business_license')
->collection('business-license')
->disk('private')
->image()
->visibility('private') // This is important, but doesn't solve the preview issue on its own
->label(__('Business License'))
->maxSize(1024),
, Uploading is fine. but when I view/edit the reocrd, I can't preview this image. here is the disk in my 'config/filesystems.php':
'private' => [ //For private files
'driver' => 'local',
'root' => storage_path('app/private'), // Important: Different directory!
'url' => env('APP_URL').'/private', // It is important to set url, otherwise, error may occur.
'visibility' => 'private',
],
'private' => [ //For private files
'driver' => 'local',
'root' => storage_path('app/private'), // Important: Different directory!
'url' => env('APP_URL').'/private', // It is important to set url, otherwise, error may occur.
'visibility' => 'private',
],
. any idea why preview is not working? thanks.
8 replies
FFilament
Created by sweetplum on 12/27/2023 in #❓┊help
what UI Kit (framework) does Filament use?
thank you so much! will take a look
5 replies
FFilament
Created by Noxo on 9/26/2023 in #❓┊help
Navigation - groups->collapsed
Hi, have you found any solution for this issue? The side-nav is too long with more resources added. Thanks.
8 replies
FFilament
Created by sweetplum on 11/20/2023 in #❓┊help
adding table filter in action->url()
it works and the filter is showing as an active filter so users can remove it. Is it possible to set the filter but invisible to users? I think I want the action->url() to this new list records page with a preset filter programmatically.
3 replies
FFilament
Created by KeyMe on 7/28/2023 in #❓┊help
Action modal form with many field to prefill
thanks. but this didn't work for my case.
14 replies
FFilament
Created by KeyMe on 7/28/2023 in #❓┊help
Action modal form with many field to prefill
Hi, have you found a way to automatically refresh form data after the Modal data is updated and closed? On my main form, I have a modal to update a related record, but the related record is not refreshed after the modal is done. Thanks!
14 replies
FFilament
Created by sweetplum on 10/14/2023 in #❓┊help
different data source for Table Builder?
thanks. my case is a little different as the data is read by uploading a csv file from a user. so I tried with Sushi. I put the csv array into Cache, in the model's getrows() I tried to get that array from cache, but always returned null. I can see the array is saved in cache.
4 replies
FFilament
Created by @uwascan on 9/21/2023 in #❓┊help
Selective Multi-tenancy
yeah, would like to know how you did it too
17 replies