如果我删除任何显示该页面的内容,我将无法删除文章或图片
if(!function_exists('image_delete')){
function image_delete($dir){
unlink(public_path().'/'.$dir);
}
}
/**
* Remove the specified resource from storage.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function destroy(Article $article)
{
image_delete($article->image); // its helper function
$article->delete();
return back()->with('success','تم حذف المقال !!');
}
这是我的问题
幕布斯6054654
鸿蒙传说