You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ClientBalanceSummary.php 288B

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