예제 #1
0
 /**
  * Delete attachment
  * 
  * @param Content $content
  * @return \Illiminate\Http\JsonResponse
  */
 public function deleteAttachment(Content $content, $attachment)
 {
     $result = unlink($content->getAttachmentsPath() . '/' . $attachment);
     return response()->json(['success' => $result]);
 }