{$this->scheduler->template}(); } private function client_statement() { $query = Client::query() ->where('company_id', $this->scheduler->company_id) ->where('is_deleted',0); //Email only the selected clients if(count($this->scheduler->parameters['clients']) >= 1) $query->where('id', $this->transformKeys($this->scheduler->parameters['clients'])); $query->cursor() ->each(function ($_client){ $this->client = $_client; $statement_properties = $this->calculateStatementProperties(); //work out the date range $pdf = $_client->service()->statement($statement_properties,true); //calculate next run dates; }); } private function calculateStatementProperties() { $start_end = $this->calculateStartAndEndDates(); return [ 'start_date' =>$start_end[0], 'end_date' =>$start_end[1], 'show_payments_table' => $this->scheduler->parameters['show_payments_table'], 'show_aging_table' => $this->scheduler->parameters['show_aging_table'], 'status' => $this->scheduler->parameters['status'] ]; } private function calculateStartAndEndDates() { return match ($this->scheduler->parameters['date_range']) { 'this_month' => [now()->firstOfMonth()->format('Y-m-d'), now()->lastOfMonth()->format('Y-m-d')], 'this_quarter' => [now()->firstOfQuarter()->format('Y-m-d'), now()->lastOfQuarter()->format('Y-m-d')], 'this_year' => [now()->firstOfYear()->format('Y-m-d'), now()->lastOfYear()->format('Y-m-d')], 'previous_month' => [now()->subMonth()->firstOfMonth()->format('Y-m-d'), now()->subMonth()->lastOfMonth()->format('Y-m-d')], 'previous_quarter' => [now()->subQuarter()->firstOfQuarter()->format('Y-m-d'), now()->subQuarter()->lastOfQuarter()->format('Y-m-d')], 'previous_year' => [now()->subYear()->firstOfYear()->format('Y-m-d'), now()->subYear()->lastOfYear()->format('Y-m-d')], 'custom_range' => [$this->scheduler->parameters['start_date'], $this->scheduler->parameters['end_date']], default => [now()->firstOfMonth()->format('Y-m-d'), now()->lastOfMonth()->format('Y-m-d')], }; } }