Uploading video on resource

I have this on my resource

                Forms\Components\FileUpload::make('image_url')
                    ->image()
                    ->acceptedFileTypes(['image/png','image/x-png','image/gif','image/jpg','image/jpeg']),
                Forms\Components\FileUpload::make('video_url')
                    ->default(null)
                    ->acceptedFileTypes(['video/mp4','video/ogg','video/webm']),
  


I'm working on local, the images and videos are on local, and the upload is so slow, for the video it takes more than 5 minutes and the end, the video doesn't store, the video is a .mp4 and 300mb

Any idea?
Was this page helpful?