fix: Correct collection name from 'feed' to 'feeds' in FeedResource form schema

This commit is contained in:
Yoga Pangestu 2026-02-17 19:37:49 +07:00
parent b67d7ad774
commit 6e3f685f06

View File

@ -88,7 +88,7 @@ public static function form(Schema $schema): Schema
->disk(config('filesystems.default')) ->disk(config('filesystems.default'))
->acceptedFileTypes(['image/*']) ->acceptedFileTypes(['image/*'])
->maxSize(1024 * 3) ->maxSize(1024 * 3)
->collection('feed') ->collection('feeds')
->customProperties(fn (): array => [ ->customProperties(fn (): array => [
'feature' => 'feeds', 'feature' => 'feeds',
'date' => now()->toDateString(), 'date' => now()->toDateString(),