// delete image

        $destinationPath =   public_path('/images/post'); // Path Where You Store  Image

        $fileName =  $post->image; // File Name in your database

        if(file_exists($destinationPath.'/'.$fileName)){

            @unlink($destinationPath.'/'.$fileName); // Delete The Image

        }

       

        $post->delete();