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

VendorPaymentPerformance.php 296B

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