adrema/app/Invoice/BillDocument.php

21 lines
312 B
PHP
Raw Normal View History

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
{
return 'tex.bill';
}
}