GIF lose animation on upload
问题 I have a project with Laravel 7.1 and Backpack and I lose the animation of the GIF images on upload. CRUD $this->crud->addField([ 'name' => 'photo', 'label' => 'Imagen ES', 'type' => 'image', 'upload' => false, 'prefix' => 'uploads/', ]); MODEL public function setPhotoAttribute($value){ $year = date('Y'); $attribute_name = "photo"; $disk = "uploads"; $destination_path = "/noticias/$year"; // if the image was erased if ($value==null) { // delete the image from disk \Storage::disk($disk)-