How to Parse table data from a pdf link in php [closed]

I have this link that takes me to a pdf file. I’ve tried to parse the data in the table in this pdf file using php but nothing works. Any help?

I tried Pdfbox but it doesnt seem to work.

        new Pdfbox(
            '/path/to/java',
            '/path/to/pdfbox-app.jar',
            new PsrLogNullLogger()
                );
    );
    
    // Convert pdf to text
    echo $file->toText('https://www.axisbank.com/docs/default-source/default-document-library/axis-bank-mclr-website-18-july-2022.pdf');```