Published
- 1 min read
file delete in laravel
The solution for this is noted below
file delete in laravel
Solution
use File;
if (File::exists(public_path('uploads/csv/img.png'))) {
File::delete(public_path('uploads/csv/img.png'));
}
Try other methods by searching on the site. That is if this doesn’t work