File "GenerateInvoicePdfJob-20250317061049.php"
Full Path: /home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/app/Http/Requests/Customer/GenerateInvoicePdfJob-20250317061049.php
File size: 898 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace App\Jobs;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
class GenerateInvoicePdfJob implements ShouldQueue
{
use Dispatchable;
use InteractsWithQueue;
use Queueable;
use SerializesModels;
public $invoice;
public $deleteExistingFile;
/**
* Create a new job instance.
*
* @return void
*/
public function __construct($invoice, $deleteExistingFile = false)
{
$this->invoice = $invoice;
$this->deleteExistingFile = $deleteExistingFile;
}
/**
* Execute the job.
*/
public function handle(): int
{
$this->invoice->generatePDF('invoice', $this->invoice->invoice_number, $this->deleteExistingFile);
return 0;
}
}