Remove max size limit for background video upload in HomePageSettings and add ApplicationResource to the panel resources in PanelPanelProvider.

This commit is contained in:
2025-07-29 12:00:19 +05:00
parent 330fc76ed3
commit 1f8888d31c
6 changed files with 162 additions and 1 deletions

View File

@@ -146,7 +146,6 @@ class HomePageSettings extends SettingsPage
FileUpload::make('bg_video')
->label('Background Video')
->acceptedFileTypes(['video/mp4', 'video/webm', 'video/ogg'])
->maxSize(51200) // 50MB
->disk('public')
->directory('homepage-videos')
->required(),