How to Delete Image File on Laravel Storage?
Delete your Image stored in storage in Laravel
To delete image from storage on laravel in your controller make sure to include
use Illuminate\Support\Facades\Storage;
within your function use this code to delete the image
Storage::delete($post->image);