Zahlungsdatum in PDF ausgeben

Vorab vielen Dank für die tolle Software.
Ich bin auf der Suche nach einer Möglichkeit um auf dem “Bezahlt” PDF das Zahlungsdatum auszugeben.
z.B.
Herzlichen Dank, Ihre Zahlung ist am xx.xx.xxx eingegangen.
Gibt es hierzu ein Aufruf?
Danke

Dazu gab es mal einen Thread, muss mal schauen.

Danke für den Tip - bin hier fündig geworden.
https://community2.invoiceplane.com/t/topic/352

Habe dann das Ganze für mich umgestrickt:

   <div class="notes">
		<?php 
			//lookup the payment(s) for this invoice
			$invoice_id= $invoice->invoice_id;
			$payments =$this->db->select("ip_payments.payment_id, ip_payments.invoice_id, ip_payments.payment_method_id, ip_payments.payment_date, ip_payments.payment_amount, ip_payments.payment_note, ip_payment_methods.payment_method_name");
			$payments =$this->db->from("ip_payments");
			$payments =$this->db->join("ip_payment_methods","ip_payments.payment_method_id = ip_payment_methods.payment_method_id");
			$payments =$this->db->where("invoice_id", $invoice_id);				
			$payments = $this->db->get();
			
			//create a nice row for each payment
			foreach($payments->result() as $payment) : ?>
			
            <?php echo 'Bertrag von '; ?>			
			<?php echo format_currency($payment->payment_amount); ?>
			<?php echo ' dankend am '; ?>
			<?php echo date_from_mysql($payment->payment_date, true); ?>
			<?php echo ' erhalten.'; ?>
			<br>
			<?php endforeach ?>
   </div>