How to delete file from public folder in laravel 5.1

后端 未结 17 1682
悲哀的现实
悲哀的现实 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:23

    Try to use:

    unlink('.'.Storage::url($news->photo));
    

    Look the dot and concatenation before the call of facade Storage.

提交回复
热议问题