Beispiel #1
0
 /**
  * @param Collection            $images
  * @param AttacherImageContract $attacherImage
  * @return bool
  */
 public function saveMany(Collection $images, AttacherImageContract $attacherImage)
 {
     foreach ($images as $style_name => $image) {
         $this->save($image, $attacherImage->getPath($style_name));
     }
     return TRUE;
 }