1. Go to this page and download the library: Download optimus/pdf-bot library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
optimus / pdf-bot example snippets
// ... other service providers
Optimus\PdfBot\PdfBotServiceProvider::class,
namespace Infrastructure\Webhooks\Controllers;
use Illuminate\Http\Request;
use Optimus\PdfBot\PdfBotController;
class PdfController extends PdfBotController
{
protected function onPdfReceived(array $data, Request $request)
{
// Do stuff with PDF
}
}