Spatie Media collections are not working in CategoryResource

I've already set to collection name but images are saving default collection like 1/example.jpg like that. Where am I do wrong?
Forms\Components\SpatieMediaLibraryFileUpload::make('media')
->collection('category')
->maxFiles(5)
->visibility('public')
->label(__('filament.category.field.image')),
Forms\Components\SpatieMediaLibraryFileUpload::make('media')
->collection('category')
->maxFiles(5)
->visibility('public')
->label(__('filament.category.field.image')),
5 Replies
Arnold Schwarzenegger
Collections and paths are different things. To change the generated path, you need to create a custom PathGenerator https://spatie.be/docs/laravel-medialibrary/v11/advanced-usage/using-a-custom-directory-structure
Shaung Bhone
Shaung BhoneOP3w ago
I do not need like that. I just want to save all images to category folder. That's it. collection() allows to group files. That's not working.
Arnold Schwarzenegger
Unless something has changer recently, that's not how collections work - all they do is group media records.
Shaung Bhone
Shaung BhoneOP3w ago
let me check Thank you do you have example or sth
Arnold Schwarzenegger
It's in the docs. If you want to save to a specific folder, either create a different disk in filesystems.php and use that (eg
'category' => [
'driver' => 'local',
'root' => storage_path('app/public/category'),
'url' => env('APP_URL').'/storage',
'visibility' => 'public',
'throw' => false,
],
'category' => [
'driver' => 'local',
'root' => storage_path('app/public/category'),
'url' => env('APP_URL').'/storage',
'visibility' => 'public',
'throw' => false,
],
or do as I said above and use a custom path generator (I don't have an example for that at hand sorry)

Did you find this page helpful?