2022-11-07 16:18:11 +01:00
|
|
|
<?php
|
|
|
|
|
2023-04-18 22:08:45 +02:00
|
|
|
namespace App\Invoice;
|
2022-11-07 16:18:11 +01:00
|
|
|
|
|
|
|
use App\Payment\Payment;
|
|
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
|
|
|
2023-12-17 22:33:29 +01:00
|
|
|
class BillDocument extends InvoiceDocument
|
2022-11-07 16:18:11 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
public function getSubject(): string
|
|
|
|
{
|
|
|
|
return 'Rechnung';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function view(): string
|
|
|
|
{
|
2024-03-14 18:04:00 +01:00
|
|
|
return 'tex.invoice.bill';
|
2022-11-07 16:18:11 +01:00
|
|
|
}
|
|
|
|
}
|