2021-10-29 21:44:23 +02:00
|
|
|
<?php
|
|
|
|
|
2023-04-18 22:08:45 +02:00
|
|
|
namespace App\Invoice;
|
2021-10-29 21:44:23 +02:00
|
|
|
|
|
|
|
use App\Payment\Payment;
|
2022-11-07 16:18:11 +01:00
|
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
2021-10-29 21:44:23 +02:00
|
|
|
|
2023-12-18 00:16:58 +01:00
|
|
|
class RememberDocument extends InvoiceDocument
|
2021-10-29 21:44:23 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
public function getSubject(): string
|
|
|
|
{
|
|
|
|
return 'Zahlungserinnerung';
|
|
|
|
}
|
|
|
|
|
2022-11-07 16:18:11 +01:00
|
|
|
public function view(): string
|
2021-10-29 21:44:23 +02:00
|
|
|
{
|
|
|
|
return 'tex.remember';
|
|
|
|
}
|
|
|
|
}
|