public function delete()
 {
     $thisArray = json_decode($this->toJson(), true);
     foreach ($thisArray as $key => $item) {
         if (!empty($item['url']) && file_exists(public_path() . $item['url'])) {
             ImageService::delete(public_path() . $item['url']);
         }
     }
     return true;
 }