- Did you've been able to click the buttons again?
- Did you check the logs? It is possible that you have exceeded the php
max_execution_time
Jan 2, 2025
3
Level 6
Disable create button and create & create another not disabled.
We noticed this issue when experiencing a slow internet connection. Our QA was uploading a video with limited bandwidth, and the progress bar showed 9%, not the full 100%. However, the Create and Create and Create Another buttons became enabled after several minutes of uploading, even though the progress bar never reached 100%.
Forms\Components\FileUpload::make('new_advertisement')
->label('New Video')
->maxSize(80000)
->acceptedFileTypes([
'video/mp4',
'video/mpeg'
])
->storeFiles(false)
->moveFiles(),
Please or to participate in this conversation.