Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

AccountsPayableAging.php 273B

12345678910111213
  1. <?php
  2. namespace App\Filament\Company\Pages\Reports;
  3. use App\Enums\Accounting\DocumentEntityType;
  4. class AccountsPayableAging extends BaseAgingReportPage
  5. {
  6. protected function getEntityType(): DocumentEntityType
  7. {
  8. return DocumentEntityType::Vendor;
  9. }
  10. }