| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 | 
							- <?php
 - 
 - namespace App\Filament\Company\Pages\Reports;
 - 
 - use App\Contracts\ExportableReport;
 - use App\DTO\ReportDTO;
 - use App\Filament\Company\Pages\Concerns\HasReportTabs;
 - use App\Services\ExportService;
 - use App\Services\ReportService;
 - use App\Support\Column;
 - use App\Transformers\IncomeStatementReportTransformer;
 - use Filament\Forms\Form;
 - use Filament\Support\Enums\Alignment;
 - use Guava\FilamentClusters\Forms\Cluster;
 - use Symfony\Component\HttpFoundation\StreamedResponse;
 - 
 - class IncomeStatement extends BaseReportPage
 - {
 -     use HasReportTabs;
 - 
 -     protected static string $view = 'filament.company.pages.reports.income-statement';
 - 
 -     protected ReportService $reportService;
 - 
 -     protected ExportService $exportService;
 - 
 -     public function boot(ReportService $reportService, ExportService $exportService): void
 -     {
 -         $this->reportService = $reportService;
 -         $this->exportService = $exportService;
 -     }
 - 
 -     public function getTable(): array
 -     {
 -         return [
 -             Column::make('account_code')
 -                 ->label('ACCOUNT CODE')
 -                 ->toggleable(isToggledHiddenByDefault: true)
 -                 ->alignment(Alignment::Left),
 -             Column::make('account_name')
 -                 ->label('ACCOUNTS')
 -                 ->alignment(Alignment::Left),
 -             Column::make('net_movement')
 -                 ->label($this->getDisplayDateRange())
 -                 ->alignment(Alignment::Right),
 -         ];
 -     }
 - 
 -     public function filtersForm(Form $form): Form
 -     {
 -         return $form
 -             ->inlineLabel()
 -             ->columns()
 -             ->schema([
 -                 $this->getDateRangeFormComponent(),
 -                 Cluster::make([
 -                     $this->getStartDateFormComponent(),
 -                     $this->getEndDateFormComponent(),
 -                 ])->hiddenLabel(),
 -             ]);
 -     }
 - 
 -     protected function buildReport(array $columns): ReportDTO
 -     {
 -         return $this->reportService->buildIncomeStatementReport($this->getFormattedStartDate(), $this->getFormattedEndDate(), $columns);
 -     }
 - 
 -     protected function getTransformer(ReportDTO $reportDTO): ExportableReport
 -     {
 -         return new IncomeStatementReportTransformer($reportDTO);
 -     }
 - 
 -     public function exportCSV(): StreamedResponse
 -     {
 -         return $this->exportService->exportToCsv($this->company, $this->report, $this->getFilterState('startDate'), $this->getFilterState('endDate'), $this->getActiveTab());
 -     }
 - 
 -     public function exportPDF(): StreamedResponse
 -     {
 -         return $this->exportService->exportToPdf($this->company, $this->report, $this->getFilterState('startDate'), $this->getFilterState('endDate'), $this->getActiveTab());
 -     }
 - }
 
 
  |