//Use File On top
use IlluminateSupportFacadesFile;
//then use the delete function
File::delete('abc/muhammad.jpg');
//location of file to delete is "public/abc/muhammad.jpg"
// import Storage class
use IlluminateSupportFacadesStorage;
Storage::disk('public')->delete('path-of-file');