How to delete file from public folder in laravel 5.1

后端 未结 17 1706
悲哀的现实
悲哀的现实 2020-11-30 09:02

I want to delete a News from database and when I hit the delete button all data from database deleted but the image is remains in upload folder. So, how do I this to work. t

17条回答
  •  孤独总比滥情好
    2020-11-30 09:41

    Follow the steps carefully to get the image first=>

        $img = DB::table('students')->where('id',$id)->first();
        $image_path = $img->photo;
        
        unlink($image_path);
        DB::table('students')->where('id',$id)->delete();
    

提交回复
热议问题