Thursday, May 7, 2020

delete image from storage laravel

//Process one for single file delete
Storage::delete($request->old_picture);

//process two for single file delete
File::delete('images/post/'.$post->image);

// process three for multiple delete            
$files = array($file1, $file2);
File::delete($files);